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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section {
  padding: 80px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,30 90,70 50,90 10,70 10,30" fill="%23ffaa00" fill-opacity="0.1"/></svg>') repeat;
  background-size: 50px;
  opacity: 0.3;
  z-index: -1;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  color: #ffaa00;
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

h2 {
  font-size: 2.5rem;
  color: #ffaa00;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.4);
}

h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  color: #cccccc;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  margin: 5px; /* Added for spacing between buttons */
}

.btn-primary {
  background: linear-gradient(135deg, #ffaa00, #e69500);
  color: #000000;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 170, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffaa00;
  border: 2px solid #ffaa00;
}

.btn-secondary:hover {
  background: #ffaa00;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 170, 0, 0.6);
}

/* Hero */
.hero {
  background: #000000;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.logo {
  width: 90px;
  height: auto;
  margin-right: 15px;
  filter: drop-shadow(0 0 8px #ffaa00);
}

.hero-text h1 {
  font-size: 2.8rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #cccccc;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

.hero .btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px; /* Space between buttons and contract address */
}

.ca-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  background: rgba(255, 170, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
  /* Add max-width to prevent container from stretching too wide on desktop */
  
  /* Ensure container doesn't shrink too much */
 
  /* Optional: Add gap for better spacing between children */
 
  /* Prevent overflow issues */

}

.ca-label {
  font-weight: 600;
  color: #FFFFFF;
  margin-right: 12px;
  font-size: 0.9rem;
}

.ca-value {
  background: rgba(255, 170, 0, 0.2);
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 600px;
  overflow: hidden;
  font-size: 0.9rem;
}

.ca-value:hover {
  background: rgba(255, 170, 0, 0.4);
  transform: scale(1.05);
}

/* About */
.about {
  background: #0a0a0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #333333;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: #ffaa00;
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: #ffaa00;
  margin-bottom: 12px;
}

/* Tokenomics */
.tokenomics {
  background: #000000;
}

.tokenomics-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tokenomics-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #333333;
  transition: transform 0.3s ease;
}

.tokenomics-list li:hover {
  transform: translateX(6px);
  border-color: #ffaa00;
}

.tokenomics-list i {
  color: #ffaa00;
  font-size: 1.3rem;
}

/* Roadmap */
.roadmap {
  background: #0a0a0a;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: linear-gradient(to bottom, #ffaa00, #e69500);
  border-radius: 2px;
}

.roadmap-phase {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.phase-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffaa00;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #000000;
  box-shadow: 0 0 12px rgba(255, 170, 0, 0.5);
  transition: transform 0.3s ease;
}

.roadmap-phase:hover .phase-icon {
  transform: scale(1.1);
}

.phase-content {
  flex: 1;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #333333;
  transition: transform 0.3s ease;
}

.roadmap-phase:hover .phase-content {
  transform: translateX(12px);
}

.phase-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase-content li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
}

.phase-content li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ffaa00;
  font-size: 1rem;
}

/* Community */
.community {
  background: #000000;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffaa00, #e69500);
  color: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 170, 0, 0.6);
}

.social-btn i {
  font-size: 1.3rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 15px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #cccccc;
  border-top: 1px solid #ffaa00;
}

.footer i {
  color: #ffaa00;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .section {
    padding: 50px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-brand {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-right: 0;
    margin-bottom: 15px;
    width: 70px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero .btn-container {
    flex-direction: column;
    gap: 10px;
  }

  .btn, .social-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .ca-container {
    flex-direction: column;
    text-align: center;
    padding: 6px 12px;
  }

  .ca-label {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 0.85rem;
  }

  .ca-value {
    max-width: 100%;
    word-break: break-all;
    font-size: 0.85rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tokenomics-list {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .roadmap-phase {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .phase-icon {
    margin-bottom: 15px;
  }

  .phase-content {
    margin-left: 0;
    width: 100%;
  }

  .social-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.85rem;
  }

  .hero-brand {
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .ca-container {
    padding: 5px 10px;
  }

  .ca-label {
    font-size: 0.8rem;
  }

  .ca-value {
    font-size: 0.8rem;
  }

  .feature {
    padding: 15px;
  }

  .tokenomics-list li {
    padding: 10px;
    font-size: 0.9rem;
  }

  .roadmap-phase {
    gap: 15px;
  }

  .phase-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .phase-content {
    padding: 10px;
  }

  .phase-content li {
    font-size: 0.85rem;
    padding-left: 15px;
  }

  .social-btn {
    font-size: 0.85rem;
  }
}