/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #1a4d3a 0%, #2d8659 50%, #4fffb0 100%);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(79, 255, 176, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #4fffb0;
  box-shadow: 0 0 15px rgba(79, 255, 176, 0.4);
}

.logo span {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #4fffb0;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(79, 255, 176, 0.1);
  border: 1px solid rgba(79, 255, 176, 0.3);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(79, 255, 176, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 255, 176, 0.3);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(79, 255, 176, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.hero-mascot-left {
  position: absolute;
  top: 10px;
  left: -160px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.8;
  animation: float-left 6s ease-in-out infinite;
  z-index: 1;
  box-shadow: 0 0 30px rgba(79, 255, 176, 0.4);
}

@keyframes float-left {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #4fffb0, #ffd700, #4fffb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(79, 255, 176, 0.5);
  line-height: 1.2;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(79, 255, 176, 0.5));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
  }
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-mascot {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 30px 0;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(79, 255, 176, 0.5);
  animation: banner-float 4s ease-in-out infinite;
  border: 2px solid rgba(79, 255, 176, 0.3);
}

@keyframes banner-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  color: #000000;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse-cta 3s infinite;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234FFFB0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 35px;
  font-weight: 800;
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.token-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.token-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(79, 255, 176, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.token-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.token-card:hover::before {
  transform: scaleX(1);
}

.token-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 255, 176, 0.6);
  box-shadow: 0 15px 40px rgba(79, 255, 176, 0.2);
}

.token-card h3 {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.token-card p {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Strain Finder Section */
.strain-finder-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.strain-finder-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.strain-finder-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.strain-finder-content p {
  font-size: 20px;
  margin-bottom: 60px;
  opacity: 0.95;
}

.strain-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.question {
  margin-bottom: 40px;
  display: none;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question.active {
  display: block;
}

.question h3 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 700;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.option-btn {
  background: rgba(79, 255, 176, 0.1);
  color: #4fffb0;
  border: 2px solid #4fffb0;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 255, 176, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.option-btn:hover::before {
  left: 100%;
}

.option-btn:hover,
.option-btn.selected {
  background: #4fffb0;
  color: #000000;
  box-shadow: 0 0 20px rgba(79, 255, 176, 0.6);
  transform: translateY(-2px);
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}

.slider-container span {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
}

#effect-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #4fffb0, #ffd700);
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(79, 255, 176, 0.3);
}

#effect-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffd700;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  border: 2px solid #ffffff;
}

#effect-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffd700;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  border: 2px solid #ffffff;
}

.strain-result {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.strain-result h3 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 35px;
  font-weight: 800;
}

.result-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  margin-bottom: 35px;
}

.strain-image img {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(79, 255, 176, 0.4);
  border: 2px solid rgba(79, 255, 176, 0.3);
}

.strain-info h4 {
  font-size: 28px;
  color: #4fffb0;
  margin-bottom: 15px;
  font-weight: 700;
}

.strain-info p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.strain-result p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Crowdfund Section */
.crowdfund-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.crowdfund-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%
  );
  z-index: -1;
}

.crowdfund-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.crowdfund-content p {
  font-size: 20px;
  margin-bottom: 50px;
  opacity: 0.95;
}

.progress-bar-container {
  width: 80%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  height: 25px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  border: 1px solid rgba(79, 255, 176, 0.3);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4fffb0, #ffd700, #4fffb0);
  border-radius: 15px;
  width: 70%;
  transition: width 1.5s ease-out;
  box-shadow: 0 0 20px rgba(79, 255, 176, 0.6);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

.crowdfund-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 22px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.crowdfund-info p {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid rgba(79, 255, 176, 0.3);
}

.crowdfund-info span {
  color: #ffd700;
  font-weight: 800;
}

.countdown-benefits {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.countdown,
.benefits {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  flex: 1;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown h3,
.benefits h3 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 800;
}

.countdown p {
  font-size: 26px;
  margin: 15px 0;
  color: #4fffb0;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(79, 255, 176, 0.5);
}

.benefits ul {
  list-style: none;
  text-align: left;
}

.benefits li {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.benefits li::before {
  content: "✓";
  color: #4fffb0;
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 22px;
}

.urgency-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.animated-button {
  animation: pulse-gold 2.5s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
}

.design-note {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.6;
  font-style: italic;
}

/* NFTs Section */
.nfts-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.nfts-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nfts-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.nfts-content p {
  font-size: 20px;
  margin-bottom: 60px;
  opacity: 0.95;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.nft-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nft-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.nft-item:hover::before {
  transform: scaleX(1);
}

.nft-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(79, 255, 176, 0.3);
  border-color: rgba(79, 255, 176, 0.6);
}

.nft-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nft-item h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

.nft-item p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.nft-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
}

.nft-features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}

.nft-features li {
  background: rgba(79, 255, 176, 0.1);
  border: 2px solid #4fffb0;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  color: #4fffb0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nft-features li:hover {
  background: rgba(79, 255, 176, 0.2);
  transform: translateY(-2px);
}

/* Tokenomics Section */
.tokenomics-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.tokenomics-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tokenomics-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  font-weight: 800;
}

.tokenomics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.tokenomics-grid .chart-container {
  flex: 1;
  min-width: 350px;
  max-width: 450px;
}

.tokenomics-grid .chart-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(79, 255, 176, 0.4);
  border: 2px solid rgba(79, 255, 176, 0.3);
}

.tokenomics-info {
  flex: 2;
  min-width: 350px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(79, 255, 176, 0.3);
}

.tokenomics-info h3 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 800;
}

.tokenomics-info ul {
  list-style: none;
  margin-bottom: 35px;
}

.tokenomics-info li {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.tokenomics-info li::before {
  content: "●";
  color: #4fffb0;
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 24px;
}

.tokenomics-info p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

.tokenomics-info strong {
  color: #4fffb0;
  font-weight: 700;
}

.roadmap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.roadmap-phase {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  min-width: 180px;
  text-align: center;
  transition: all 0.3s ease;
}

.roadmap-phase:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(79, 255, 176, 0.2);
}

.roadmap-phase h4 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

.roadmap-phase p {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 600;
}

.roadmap-arrow {
  font-size: 35px;
  color: #4fffb0;
  font-weight: 800;
}

/* Community Section */
.community-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.community-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.community-content p {
  font-size: 20px;
  margin-bottom: 60px;
  opacity: 0.95;
}

.social-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.social-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  min-width: 320px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(79, 255, 176, 0.3);
}

.social-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(79, 255, 176, 0.5));
}

.social-card h3 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

.social-card p {
  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-social {
  display: inline-block;
  background: linear-gradient(45deg, #4fffb0, #33cc99);
  color: #000000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(79, 255, 176, 0.3);
}

.btn-social:hover {
  background: linear-gradient(45deg, #33cc99, #4fffb0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 255, 176, 0.5);
}

.community-members {
  font-size: 26px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 35px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* AI Integration Section */
.ai-integration-section {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ai-integration-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ai-integration-content h2 {
  font-size: 42px;
  background: linear-gradient(45deg, #4fffb0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  font-weight: 800;
}

.ai-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.ai-image img {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(79, 255, 176, 0.4);
  border: 2px solid rgba(79, 255, 176, 0.3);
}

.ai-text {
  flex: 1;
  min-width: 350px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(79, 255, 176, 0.3);
}

.ai-text p {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}

.ai-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.ai-example-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(79, 255, 176, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.ai-example-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(79, 255, 176, 0.2);
}

.ai-example-card h4 {
  font-size: 26px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

.ai-example-card p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 60px 0 30px 0;
  text-align: center;
  border-top: 1px solid rgba(79, 255, 176, 0.2);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(79, 255, 176, 0.3);
  box-shadow: 0 0 20px rgba(79, 255, 176, 0.3);
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4fffb0;
  text-shadow: 0 0 10px rgba(79, 255, 176, 0.5);
}

.footer-social {
  display: flex;
  gap: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(79, 255, 176, 0.1);
  border: 1px solid rgba(79, 255, 176, 0.3);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(79, 255, 176, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 255, 176, 0.3);
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-disclaimer,
.footer-credits {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 800px;
}

.footer-credits {
  font-weight: 600;
  color: #4fffb0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav ul {
    gap: 25px;
  }

  .hero-mascot-left {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -100px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-banner-mascot {
    max-width: 400px;
  }

  .about-content h2,
  .strain-finder-content h2,
  .crowdfund-content h2,
  .nfts-content h2,
  .tokenomics-content h2,
  .community-content h2,
  .ai-integration-content h2 {
    font-size: 36px;
  }

  .token-details,
  .crowdfund-info,
  .countdown-benefits,
  .tokenomics-grid,
  .ai-grid,
  .social-cards,
  .ai-examples {
    flex-direction: column;
    gap: 35px;
  }

  .token-card,
  .countdown,
  .benefits,
  .social-card,
  .ai-example-card {
    width: 100%;
    max-width: 450px;
  }

  .roadmap {
    flex-direction: column;
  }

  .roadmap-arrow {
    transform: rotate(90deg);
  }

  .strain-form {
    padding: 30px;
  }

  .question h3 {
    font-size: 24px;
  }

  .option-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .strain-result h3 {
    font-size: 28px;
  }

  .strain-info h4 {
    font-size: 24px;
  }

  .strain-info p,
  .strain-result p {
    font-size: 18px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-mascot-left {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -80px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-banner-mascot {
    max-width: 300px;
  }

  .btn-cta {
    padding: 15px 35px;
    font-size: 18px;
  }

  .about-content h2,
  .strain-finder-content h2,
  .crowdfund-content h2,
  .nfts-content h2,
  .tokenomics-content h2,
  .community-content h2,
  .ai-integration-content h2 {
    font-size: 28px;
  }

  .crowdfund-info {
    flex-direction: column;
    gap: 25px;
  }

  .countdown p {
    font-size: 22px;
  }

  .benefits li {
    font-size: 18px;
  }

  .nft-item h3 {
    font-size: 20px;
  }

  .tokenomics-info h3 {
    font-size: 26px;
  }

  .tokenomics-info li,
  .tokenomics-info p {
    font-size: 18px;
  }

  .roadmap-phase h4 {
    font-size: 20px;
  }

  .social-card h3 {
    font-size: 24px;
  }

  .community-members {
    font-size: 22px;
  }

  .ai-image img {
    width: 250px;
    height: 250px;
  }

  .ai-text p {
    font-size: 18px;
  }

  .ai-example-card h4 {
    font-size: 22px;
  }
}
