/* Base Styles */
:root {
  --primary: #6c5ce7;
  --primary-dark: #5649c0;
  --secondary: #00cec9;
  --accent: #fd79a8;
  --dark: #0f0f1a;
  --darker: #080812;
  --light: #f5f6fa;
  --gray: #2d3436;
  --text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: #f5f6fa;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title,
.section-title span,
.section-title .highlight {
  font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  /* color: white !important; */
  text-shadow: none !important;
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.about-content p,
.feature-card p,
.game-content p,
.token-content p,
.footer-brand p,
.footer-links a,
.twitter-content p,
.cta-content p {
  font-family: 'Roboto', 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 400;
  /* color: #e4e8ef !important; */
  opacity: 0.95;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.bg-dark-gradient {
  background: linear-gradient(to bottom, var(--dark), var(--darker));
}

/* Button Styles */
.btn {
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover:before {
  opacity: 1;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-light {
  color: var(--light);
  border-color: var(--light);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: #060e23;
}

.navbar.scrolled {
  background-color: rgba(15, 15, 26, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.img-logo {
  width: 90px;
  height: 90px;
}

.brand-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.connect-btn {
  margin-left: 15px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  background: url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80&w=2070")
    no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Add top padding to push content below header */
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 26, 0.9),
    rgba(8, 8, 18, 0.8)
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btns {
  margin-top: 2rem;
}

.hero-image-container {
  position: relative;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&q=80&w=2070")
    no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.floating-element {
  position: absolute;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 10px;
  opacity: 0.7;
  z-index: 1;
}

#cube1 {
  width: 100px;
  height: 100px;
  top: 50px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}

#cube2 {
  width: 70px;
  height: 70px;
  bottom: 70px;
  left: 50px;
  animation: float 8s ease-in-out infinite;
}

#cube3 {
  width: 120px;
  height: 120px;
  top: 100px;
  right: -40px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* About Section */
.about-image {
  height: 400px;
  background: url("/images/boygirl.jpeg")
    no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.glow-effect {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.3) 0%,
    rgba(15, 15, 26, 0) 70%
  );
  animation: glow 5s ease-in-out infinite;
}

@keyframes glow {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

.about-content h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.stat-label {
  font-family: 'Roboto', 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 500;
  /* color: #b2becd; */
  letter-spacing: 0.01em;
}

.list-items strong {
  color: var(--primary);
}

/* Features Section */
.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Remove text gradient from card itself */
  background: none;
  color: #f3f6fa !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icons:hover {
  cursor: pointer;
  color: red;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
}

.feature-card p {
  font-family: 'Roboto', 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #f3f6fa !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
  opacity: 0.97;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* Games Section */
.game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 92, 231, 0.3);
}

.game-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.battle-royale {
  background: url("https://images.unsplash.com/photo-1542751110-97427bbecf20?auto=format&fit=crop&q=80&w=2076")
    no-repeat center center;
  background-size: cover;
}

.puzzle-challenge {
  background: url("https://images.unsplash.com/photo-1611996575749-79a3a250f948?auto=format&fit=crop&q=80&w=2070")
    no-repeat center center;
  background-size: cover;
}

.tournaments {
  background: url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&q=80&w=2071")
    no-repeat center center;
  background-size: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-content {
  padding: 20px;
}

.game-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.game-content p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.7;
}

.game-stats span i {
  margin-right: 5px;
}

/* Token Section */
.token-content h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text);
}

.token-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--text);
}

.token-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  color: var(--text);
}

.token-feature {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.token-feature i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 1.3rem;
}

.token-chart-container {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.token-distribution {
  margin-bottom: 2rem;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 24px 0;
  box-shadow: 0 4px 24px 0 rgba(108,92,231,0.08);
}

.token-stat {
   text-align: center;
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.token-stat:last-child {
  border-right: none;
}

#tokenChart {
  width: 350px !important;
  height: 350px !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.token-stat .stat-label {
  display: block;
  font-family: 'Roboto', 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #b2becd;
  opacity: 0.85;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.token-stat .stat-value {
  display: block;
  font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(108,92,231,0.10);
  margin-bottom: 0;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1rem;
  font-weight: 500;
}

/* Community Section */
.twitter-feed {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.twitter-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.twitter-profile {
  display: flex;
  align-items: center;
}

.twitter-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("/images/favicon-96x96.png")
    no-repeat center center;
  background-size: cover;
  margin-right: 15px;
}

.twitter-info h4 {
  margin-bottom: 0;
}

.twitter-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.twitter-follow {
  background-color: rgba(29, 161, 242, 0.1);
  color: #1da1f2;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.twitter-follow:hover {
  background-color: #1da1f2;
  color: white;
}

.twitter-content {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.twitter-content p {
  margin-bottom: 1rem;
}

.twitter-footer {
  padding: 15px 20px;
  display: flex;
  gap: 20px;
}

.twitter-footer span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.twitter-footer span i {
  margin-right: 5px;
}

.footer-top {
  color: white;
}

footer

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  position: relative;
  background: url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80&w=2071")
    no-repeat center center;
  background-size: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.9),
    rgba(0, 206, 201, 0.8)
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: var(--darker);
  padding: 80px 0 30px;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: white;
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer h5:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-links {
  list-style: none;
  
  padding: 0;
}

.footer-links li a {
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-links a {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text);
}

.footer-bottom p {
  opacity: 0.7;
}

/* --- Google Fonts for Professional Look --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Roboto:wght@400;500;700&display=swap');

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

/* Animation Classes */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
  opacity: 1;
  transform: translate(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-image,
  .token-chart-container {
    margin-bottom: 2rem;
  }

  .stats-container {
    flex-wrap: wrap;
  }

  .stat-item {
    width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .token-features {
    grid-template-columns: 1fr;
  }

  .token-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .token-stats {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
  .token-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .token-stat:last-child {
    border-bottom: none;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-btns .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-btns .btn:last-child {
    margin-bottom: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}
