:root {
  --primary: #7b2fff;
  --secondary: #00d4ff;
  --dark: #0a0a0f;
  --darker: #050508;
  --card: rgba(20, 20, 30, 0.8);
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --border: rgba(123, 46, 255, 0.3);
  --success: #00d4ff;
  --warning: #ff6b6b;
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
  background: rgba(5, 5, 8, 0.95);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.navbar-brand h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(123, 46, 255, 0.3);
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.navbar-menu a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.navbar-menu a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(123, 46, 255, 0.6);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-discord {
  background: #5865f2;
  border: 2px solid #5865f2;
}

.btn-discord:hover {
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 46, 255, 0.1), rgba(0, 212, 255, 0.05));
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 46, 255, 0.3), transparent);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.hero .container {
  text-align: center;
  z-index: 10;
  position: relative;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(123, 46, 255, 0.4);
  animation: fadeInDown 0.8s ease;
}

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

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
  min-height: 40px;
}

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

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(123, 46, 255, 0.3);
}

/* Bot Status Section */
.bots-section {
  background: linear-gradient(135deg, rgba(123, 46, 255, 0.05), rgba(0, 212, 255, 0.05));
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.announcement-banner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 46, 255, 0.2));
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--secondary);
}

.announcement-banner p {
  margin: 0;
  font-weight: 700;
}

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

.bot-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bot-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(123, 46, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bot-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(123, 46, 255, 0.3);
  transform: translateY(-5px);
}

.bot-card:hover::before {
  opacity: 1;
}

.bot-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.bot-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.bot-status-dot.online {
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.bot-status-dot.offline {
  background: var(--warning);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 5px currentColor;
  }
  50% {
    box-shadow: 0 0 15px currentColor;
  }
}

.bot-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.bot-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.bot-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 10;
}

.bot-info p {
  margin: 0.5rem 0;
}

/* Server Info Section */
.server-section {
  background: var(--dark);
}

.server-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.info-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--text);
  word-break: break-all;
  font-size: 0.95rem;
}

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

.info-card a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Merch Section */
.merch-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 46, 255, 0.05));
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

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

.merch-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.merch-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(123, 46, 255, 0.3);
  transform: translateY(-5px);
}

.merch-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.merch-card:hover img {
  transform: scale(1.05);
}

.merch-card h3 {
  padding: 1.5rem 1.5rem 0;
  font-size: 1.1rem;
  color: var(--text);
}

.merch-card p {
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.merch-card .price {
  display: block;
  padding: 1rem 1.5rem 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.merch-cta {
  text-align: center;
}

/* Ads Section */
.ads-section {
  background: linear-gradient(135deg, rgba(123, 46, 255, 0.1), rgba(0, 212, 255, 0.1));
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.ad-banner {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ad-banner:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(123, 46, 255, 0.3);
}

.ad-banner h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.ad-banner p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--darker);
  border-top: 2px solid var(--border);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .navbar-menu {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

  .ad-banner {
    padding: 2rem;
  }

  .ad-banner h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 0;
  }
}

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

  .section-title {
    font-size: 1.4rem;
  }

  .navbar-menu {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}
