:root {
  --primary-color: #ff3e3e;
  --secondary-color: #1e1e2e;
  --background-color: #0a0a0f;
  --text-color: #ffffff;
  --accent-color: #2d2d3a;
  --glow-color: rgba(255, 62, 62, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-weight: 900;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

h2 span {
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

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

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

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary-color);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 20px rgba(255, 62, 62, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 62, 62, 0.7);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.hero-image:hover {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-4px, -4px); }
  20% { transform: translate(4px, -4px); }
  30% { transform: translate(-4px, 4px); }
  40% { transform: translate(4px, 4px); }
  50% { transform: translate(-4px, -4px); }
  60% { transform: translate(4px, -4px); }
  70% { transform: translate(-4px, 4px); }
  80% { transform: translate(4px, 4px); }
  90% { transform: translate(-4px, -4px); }
  100% { transform: translate(0, 0); }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 40px var(--glow-color);
}

.red-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-color) 0%, rgba(255, 62, 62, 0) 70%);
  top: 50%;
  right: 20%;
  transform: translate(50%, -50%);
  z-index: 0;
  opacity: 0.8;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.8;
    transform: translate(50%, -50%) scale(1.2);
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}

/* How to Buy Section */
.how-to-buy {
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step {
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 20px;
}

.contract-address {
  text-align: center;
  margin-top: 50px;
}

.address-box {
  background-color: var(--accent-color);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

#contract-address {
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-copy {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
}

.btn-copy:hover {
  background-color: #ff5555;
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tokenomics-item {
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.tokenomics-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tokenomics-item p {
  font-size: 1.5rem;
  font-weight: 700;
}

.allocation {
  max-width: 800px;
  margin: 0 auto;
}

.allocation h3 {
  text-align: center;
  margin-bottom: 30px;
}

.allocation-bar {
  height: 40px;
  background-color: #2c2c3a;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  margin-bottom: 20px;
}

.allocation-segment {
  height: 100%;
}

.allocation-segment.liquidity {
  background-color: var(--primary-color);
}

.allocation-segment.ai-development {
  background-color: #50e3c2;
}

.allocation-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.label {
  display: flex;
  align-items: center;
}

.color {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 8px;
}

.color.liquidity {
  background-color: var(--primary-color);
}

.color.ai-development {
  background-color: #50e3c2;
}

/* Community Section */
.community {
  padding: 100px 0;
  text-align: center;
}

.community p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.3s, color 0.3s;
  gap: 10px;
}

.social-link:hover {
  transform: translateY(-5px);
  color: var(--primary-color);
}

.social-link svg {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  padding: 40px 0;
  text-align: center;
}

.disclaimer {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

/* Floating Rocket */
.floating-rocket {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 62, 62, 0.5);
  transition: all 0.3s;
  z-index: 99;
}

.floating-rocket:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 62, 62, 0.8);
}

.floating-rocket svg {
  color: white;
  width: 30px;
  height: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .hero-image {
    width: 300px;
    height: 300px;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-image {
    width: 250px;
    height: 250px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
}
