/* Base Styles */
:root {
  --primary-color: #36EEE0;
  --secondary-color: #BA55D3;
  --dark-bg: #0A0A0A;
  --card-bg: #111111;
  --text-color: #FFFFFF;
  --accent-color: #FFD700;
  --gradient-start: #36EEE0;
  --gradient-mid: #9370DB;
  --gradient-end: #BA55D3;
  --pyramid-color: #A67C52;
  --eye-color: #FF3333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  background-image: 
      radial-gradient(circle at 50% 50%, rgba(186, 85, 211, 0.05) 0%, transparent 70%),
      linear-gradient(rgba(10, 10, 10, 1) 40%, rgba(17, 17, 17, 1) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--dark-bg);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  margin: 1rem 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(186, 85, 211, 0.3);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(186, 85, 211, 0.4);
  color: var(--dark-bg);
}

/* Navbar */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  padding: 1rem 2rem;
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 8px;
  height: 8px;
  background-color: var(--eye-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--eye-color);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; box-shadow: 0 0 8px var(--eye-color); }
  50% { opacity: 1; box-shadow: 0 0 16px var(--eye-color); }
  100% { opacity: 0.5; box-shadow: 0 0 8px var(--eye-color); }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 5rem;
  position: relative;
  color: var(--text-color);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/pyramid-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -2;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.token-stats-banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(186, 85, 211, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.token-price-display, #volume-banner, #marketcap-banner {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.token-address {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(186, 85, 211, 0.2);
}

.token-address code {
  font-family: monospace;
  font-size: 1rem;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: rgba(54, 238, 224, 0.1);
}

/* Features Section */
.features {
  background-image: 
      radial-gradient(circle at 0% 100%, rgba(186, 85, 211, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 100% 0%, rgba(54, 238, 224, 0.1) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(54, 238, 224, 0.1);
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 238, 224, 0.05), rgba(186, 85, 211, 0.05));
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(186, 85, 211, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.7);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(54, 238, 224, 0.3);
}

/* Tokenomics Section */
.tokenomics {
  position: relative;
  text-align: center;
}

.tokenomics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('/assets/pyramid-pattern.png');
  background-repeat: repeat;
  opacity: 0.03;
}

.tokenomics-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .tokenomics-container {
      flex-direction: row;
      align-items: flex-start;
  }
}

.tokenomics-chart, .tokenomics-info {
  flex: 1;
}

.chart-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--eye-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--eye-color);
  z-index: 3;
  animation: glow 3s infinite;
}

@keyframes glow {
  0% { box-shadow: 0 0 15px var(--eye-color); }
  50% { box-shadow: 0 0 30px var(--eye-color); }
  100% { box-shadow: 0 0 15px var(--eye-color); }
}

.tokenomics-list {
  list-style-type: none;
  text-align: left;
  padding: 2rem;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186, 85, 211, 0.2);
}

.tokenomics-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tokenomics-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.tokenomics-item span {
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.tokenomics-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Calculator Section */
.calculator {
  background-color: var(--dark-bg);
  background-image: 
      radial-gradient(circle at 100% 100%, rgba(54, 238, 224, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 0% 0%, rgba(186, 85, 211, 0.1) 0%, transparent 50%);
}

.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .calculator-container {
      flex-direction: row;
      align-items: flex-start;
  }
}

.calculator-card {
  flex: 2;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(54, 238, 224, 0.1);
}

.calculator-info {
  flex: 1;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186, 85, 211, 0.1);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(54, 238, 224, 0.3);
  background-color: rgba(10, 10, 10, 0.8);
  color: var(--text-color);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(54, 238, 224, 0.2);
}

.calculate-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--dark-bg);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(186, 85, 211, 0.3);
}

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.result-item {
  background: rgba(10, 10, 10, 0.6);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(54, 238, 224, 0.1);
}

.result-item:hover {
  transform: translateY(-5px);
}

.result-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--primary-color);
}

.result-item p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}

.calculator-info h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.disclaimer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* How to Buy Section */
.how-to-buy {
  text-align: center;
  background-image:
      radial-gradient(circle at 50% 0%, rgba(186, 85, 211, 0.1) 0%, transparent 50%);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(54, 238, 224, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(186, 85, 211, 0.2);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-bg);
}

/* Community Section */
.community {
  text-align: center;
  background-image:
      radial-gradient(circle at 50% 100%, rgba(54, 238, 224, 0.1) 0%, transparent 50%);
}

.community p {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186, 85, 211, 0.1);
}

.social-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(54, 238, 224, 0.2);
  color: var(--text-color);
}

.social-icon {
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background-color: rgba(10, 10, 10, 0.9);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 2rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
      font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  nav {
      padding: 1rem;
  }
  
  .nav-links {
      display: none;
  }
  
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  section {
      padding: 4rem 1.5rem;
  }
  
  .token-stats-banner {
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
  }
  
  .features-grid, .steps-container {
      grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.5rem;
  }
  
  .cta-button {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
  }
  
  .token-address {
      flex-direction: column;
      gap: 0.5rem;
  }
  
  .token-address code {
      font-size: 0.8rem;
  }
}

/* Animation for the pyramid eye */
.chart-container {
  position: relative;
}

/* Special animation for the all-seeing eye */
@keyframes eyePulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* Animation classes */
.animate-eye {
  animation: eyePulse 3s infinite;
}
