
:root {
  --color-primary: #1eff45;
  --color-secondary: #60d697;
  --color-text: #f4f4f4;
  --color-text-dim: #888;
  --color-text-light: #ddd;
  --color-bg-dark: #222;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #0a0e1a;
  --color-green: #7eff00;
  --color-teal: #00ff88;
  --color-gray-100: #d1d5dc;
  --color-gray-200: #99a1af;
  --color-gray-300: #6a7282;
  --color-red-light: rgba(251, 44, 54, 0.199);
  --color-red-border: rgba(251, 44, 54, 0.4);
  --color-red-text: #ff6369;
  
  --gradient-header: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(122, 122, 122, 0.25) 50%, rgba(255, 255, 255, 0.15) 100%);
  --gradient-footer: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(122,122,122,0.25) 70%, rgba(255,255,255,0.07) 100%);
  
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  --transition-rotate: 0.7s cubic-bezier(.76,.04,.24,.96);
  
  --shadow-header: 5px 5px 5px 0px rgba(0, 0, 0, 0.25), inset -5px -5px 5px 0px rgba(0, 0, 0, 0.25);
  --shadow-button: 0 15px 15px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  width: 100%;
  background-image: url(images/IMG_1914.JPG);
  background-size: cover;
  background-position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
}

.main-content {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* NAV */
.navbar {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: var(--spacing-xl) 0;
}

/* Header Container */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1480px;
  z-index: 1000;
  padding: 10px 20px;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(122, 122, 122, 0.25) 50%, 
    rgba(255, 255, 255, 0.15) 100%
  );
  border-radius: 15px;
  box-shadow: 
    5px 5px 5px 0px rgba(0, 0, 0, 0.25),
    inset -5px -5px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}
.header-logo img:hover{
  transform: scale(0.85) rotate(360deg);
}
.header-nav {
  display: flex;
  gap: 24px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #f4f4f4;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  transition: background 0.5s, -webkit-text-fill-color 0.5s;
}
.header-nav a:hover {
  background: linear-gradient(120deg, #fff 30%, #16ff63 50%, #fff 70%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff; /* fallback */
  animation: shine-text-move 0.8s linear 1;
}
@keyframes shine-text-move {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}

/* Mint Button Container */
.MintBtn {
  width: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0;
}

/* Mint Button */
.MintBtn .btn {
  position: relative;
  width: 250px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.MintBtn .btn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.MintBtn .btn:hover a {
	letter-spacing: 3px;
  color: #222;
}
.MintBtn .btn a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
}
.MintBtn .btn:hover a::before {
	transform: skewX(45deg) translate(200px);
}
.MintBtn .btn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.MintBtn .btn:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.MintBtn .btn::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.MintBtn .btn:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.MintBtn .btn:nth-child(1)::before,
.MintBtn .btn:nth-child(1)::after {
	background: #1eff45;
	box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
		0 0 60px #1eff45;
}
@media (max-width: 480px) {
  .header-cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .header-logo img {
    height: 40px;
  }
}

/* Toggle button (hamburger) */
.header-toggle {
  display: none; /* shown only on small screens */
  background: transparent;
  border: none;
  width: 42px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.header-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile nav*/
.mobile-nav {
  display: none;
  width: 100%;
  max-width: 1480px;
  margin: 8px auto 0 auto;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(255,255,255,0.02));
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
}

.mobile-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--color-primary);
}

.mobile-mint {
  padding: 12px 20px 20px 20px;
  display: flex;
}

.mobile-mint-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-mint-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
}
.mobile-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 8px;
}
.mobile-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--color-primary, #1eff45);
}
.mobile-mint {
  padding: 12px 20px 20px 20px;
  display: flex;
}
.mobile-mint-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--color-primary, #1eff45);
  color: #000;
  font-weight: 700;
}

/* Responsive behavior*/
@media (max-width: 768px) {
  .header-toggle { display: flex; }
  .header-nav { display: none; }
  .MintBtn { display: none; }
  .header-container { gap: 12px; }
  .site-header { padding: 8px 14px; }
}

/* Transform hamburger into X when open */
.header-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-toggle.open .bar:nth-child(2) { opacity: 0; }
.header-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* THE TEAM */
.about-title {
  font-size: 7.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    rgba(19, 20, 20, 0.35) 30%,
    rgb(255 255 255 / 0%) 76%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card:hover {
    box-shadow: 0 16px 40px 0px rgba(22,255,99,0.35), 0 2px 16px 8px rgba(0, 0, 0, 0.863);
    transform: scale(1.13) translateZ(0);
    transition: box-shadow 0.2s, transform 0.2s;
}

.card.center:hover {
    box-shadow: 0 24px 60px 0px rgba(22,255,99,0.45), 0 4px 22px 12px rgba(0,0,0,0.24);
    transform: scale(1.16) translateZ(0);
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 40px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: rgba(255, 255, 255, 0.842);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: rgb(88, 88, 88);
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: rgba(255, 255, 255, 0.664);
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: rgb(22, 255, 99);
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(14, 255, 74, 0.6);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;
	padding-bottom: 4px;
}

.nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}

/* -----Footer CSS------ */
.footer {
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(122,122,122,0.25) 70%, rgba(255,255,255,0.07) 100%);
  color: #888;
  width: 100vw;
  min-height: 150px;
  padding: 0;
  font-family: 'Roboto Condensed', 'Inter', Arial, sans-serif;
  position: static;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 30px 0px rgba(0,0,0,0.22), inset 0 2px 15px 0px rgba(0,0,0,0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.footer-top-border {
  border-top: 2px solid #60d697;
  width: 97%;
  margin: 18px auto 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 165px;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  margin-left: -300px;
  min-width: 300px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-dp-logo {
  height: 65px;
  width: 65px;
  filter: drop-shadow(0 0 12px #60d697);
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}

.footer-dp-logo:hover {
  transform: scale(0.85) rotate(360deg);
  cursor: pointer;
}

.footer-dp-text {
  font-family: 'Perfect Bomber FreePersonalUse Script', cursive, sans-serif;
  font-size: 24px;
  color: #ccc;
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer-cameltoe-logo {
  height: 65px;
  width: auto;
  margin-bottom: 0;
  transition: transform 0.7s cubic-bezier(.76,.04,.24,.96);
}

.footer-cameltoe-logo:hover {
  transform: scale(0.85) rotate(360deg);
  cursor: pointer;
}

.footer-cameltoe-text {
  font-family: 'Heading Pro Trial Bold Italic', sans-serif;
  font-size: 24px;
  color: #888;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-left: 8px;
}

.footer-address-box {
  background-color: rgba(128, 255, 0, 0.158);
  border: 1px solid rgba(128, 255, 0, 0.89);
  border-radius: 16px;
  padding: 10px;
  text-align: left;
  width: 95%;
  height: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-address-box p {
  font-size: 14px;
  color: var(--color-gray-200);
  margin: 0 0 5px 0;
}

.address-text-footer {
  color: var(--color-green) !important;
  word-break: break-all;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  gap: 0px;
  margin-top: 12px;
  padding: 0;
}

.footer-stamp {
  width: 220px;
  height: auto;
  opacity: 0.62;
  margin: 0px;
  padding: 0;
  order: -1;
  display: block;
}

.footer-copyright {
  font-size: 13px;
  color: #444;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 0;
  display: block;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(126, 255, 0, 0.1);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-disclaimer {
  background-color: var(--color-red-light);
  border: 1px solid rgba(251, 44, 54, 0.712);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-gray-200);
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--color-red-text);
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 60px;
  min-width: 260px;
  margin-top: 32px;
  margin-right: -300px;
}

.footer-company, .footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-section-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 4px;
}

.footer-company ul, .footer-connect ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-company ul li {
  margin-bottom: 8px;
}

.footer-company ul li a {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 13px;
  color: #ddd;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-company ul li a:hover,
.footer-company ul li a:focus {
  color: #60d697;
  text-decoration: underline;
}

.footer-social-icons-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-social-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  margin-right: -30px;
}

.footer-social-row-telegram {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  width: 100%;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #222;
  box-shadow: 0 0 6px 1px #333 inset;
  transition: filter 0.2s;
  object-fit: cover;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
  filter: brightness(1.2);
}

.footer-hashtags {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  right: -300px;
}

.footer-tag {
  background-color: rgba(126, 255, 0, 0.1);
  border: 1px solid rgba(126, 255, 0, 0.3);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 11px;
  color: var(--color-green);
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px;
  }

  .footer-left, .footer-center, .footer-right {
    min-width: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .footer-left {
    align-items: center;
  }

  .footer-address-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social-icons-group {
    align-items: center;
  }

  .footer-social-row {
    justify-content: center;
    margin-right: 0;
  }

  .footer-hashtags {
    position: static;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-logo-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-dp-text, .footer-cameltoe-text {
    font-size: 20px;
    text-align: center;
  }

  .footer-address-box {
    padding: 12px;
  }

  .footer-stamp {
    width: 180px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-disclaimer p {
    font-size: 12px;
  }

  .footer-section-title {
    font-size: 14px;
  }

  .footer-company ul li a {
    font-size: 12px;
  }
}