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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a24;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-primary: #5865f2;
  --border-color: #2a2a35;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0a0a0f;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  padding: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 20px;
  max-width: 100%;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.15);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(88, 175, 233, 0.8), rgba(0, 168, 255, 0.6));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px;
  margin-top: -60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background: #e5e5e5;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-premium {
  background: #ffffff;
  color: #000000;
}

.btn-premium:hover {
  background: #e5e5e5;
}

.btn-discord {
  background: #ffffff;
  color: #000000;
}

.btn-discord:hover {
  background: #e5e5e5;
}

/* Sections */
.features-section,
.premium-section,
.faq-section {
  padding: 100px 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -1.2px;
}

.section-subtitle {
  text-align: center;
  color: rgba(160, 160, 160, 0.8);
  margin-bottom: 60px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(10, 10, 15, 1) 0%, rgba(20, 20, 30, 0.8) 100%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 60px auto;
}

.pricing-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(88, 175, 233, 0.3);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(88, 175, 233, 0.6);
  background: rgba(25, 25, 35, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(88, 175, 233, 0.15);
}

.pricing-card-featured {
  border-color: rgba(88, 175, 233, 0.6);
  background: rgba(25, 35, 50, 0.8);
  box-shadow: 0 0 30px rgba(88, 175, 233, 0.2);
}

.pricing-card-featured:hover {
  border-color: rgba(88, 175, 233, 0.8);
  box-shadow: 0 20px 50px rgba(88, 175, 233, 0.3);
}

.pricing-badge {
  display: inline-block;
  background: rgba(88, 175, 233, 0.2);
  border: 1px solid rgba(88, 175, 233, 0.5);
  color: #58afe9;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.price-number {
  font-size: 48px;
  font-weight: 700;
  color: #58afe9;
  line-height: 1;
}

.price-currency {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.price-or {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 4px;
}

.price-usd {
  font-size: 18px;
  color: #58afe9;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(160, 160, 160, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-features svg {
  color: #58afe9;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing {
  background: transparent;
  border: 1px solid rgba(88, 175, 233, 0.5);
  color: #58afe9;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background: rgba(88, 175, 233, 0.1);
  border-color: rgba(88, 175, 233, 0.8);
}

.btn-pricing-primary {
  background: rgba(88, 175, 233, 0.2);
  border: 1px solid rgba(88, 175, 233, 0.6);
  color: #ffffff;
}

.btn-pricing-primary:hover {
  background: rgba(88, 175, 233, 0.35);
  border-color: rgba(88, 175, 233, 0.8);
}

.pricing-note {
  text-align: center;
  color: rgba(160, 160, 160, 0.7);
  font-size: 13px;
  margin-top: 40px;
}

.pricing-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

.premium-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.premium-section {
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Boxes */
.premium-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.premium-box {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
  text-align: center;
}

.premium-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(25, 25, 30, 0.8);
  transform: translateY(-4px);
}

.premium-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
}

.premium-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.premium-box p {
  color: rgba(160, 160, 160, 0.9);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.feature-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
  text-align: left;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(25, 25, 30, 0.8);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: rgba(160, 160, 160, 0.9);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-title {
  font-size: 48px;
  margin: 80px 0 32px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -1.2px;
}

/* Free Script Section */
.free-script-section {
  padding: 100px 20px;
  text-align: center;
}

.free-script-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.script-box {
  max-width: 800px;
  margin: 40px auto;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.script-code {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  word-break: break-all;
  text-align: left;
  line-height: 1.6;
}

.btn-copy {
  background: #ffffff;
  color: #000000;
  padding: 10px 32px;
}

.btn-copy:hover {
  background: #e5e5e5;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* FAQ Section */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-left,
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(25, 25, 30, 0.8);
}

.faq-question {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.2px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.3s;
}

.faq-icon {
  font-size: 20px;
  color: var(--text-secondary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  font-style: normal;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(160, 160, 160, 0.9);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px 24px;
}

.faq-answer strong {
  color: #ffffff;
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(10, 10, 15, 1) 0%, rgba(15, 20, 35, 0.6) 100%);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: rgba(18, 18, 26, 0.7);
  border: 1px solid rgba(88, 175, 233, 0.25);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 175, 233, 0.15), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  border-color: rgba(88, 175, 233, 0.6);
  background: rgba(20, 30, 50, 0.9);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(88, 175, 233, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-card-inner {
  position: relative;
  z-index: 2;
}

.team-role-badge {
  display: inline-block;
  background: rgba(88, 175, 233, 0.15);
  border: 1px solid rgba(88, 175, 233, 0.4);
  color: #58afe9;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.team-card:hover .team-role-badge {
  background: rgba(88, 175, 233, 0.25);
  border-color: rgba(88, 175, 233, 0.6);
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.team-title {
  font-size: 13px;
  color: #58afe9;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.team-description {
  font-size: 13px;
  color: rgba(160, 160, 160, 0.85);
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .team-card {
    padding: 20px;
  }

  .team-name {
    font-size: 18px;
  }
}

/* Discord Section */
.discord-section {
  padding: 100px 20px;
}

.discord-card {
  background: #12121a;
  border: 1px solid #2a2a35;
  border-radius: 16px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  transition: all 0.2s;
}

.discord-card:hover {
  border-color: #3a3a45;
  background: #1a1a24;
}

.discord-icon {
  flex-shrink: 0;
}

.discord-logo {
  width: 160px;
  height: 160px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-logo svg {
  width: 90px;
  height: 90px;
  color: #000000;
}

.discord-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.8px;
}

/* Footer */
.footer {
  background: #0a0a0f;
  padding: 80px 20px 40px;
  border-top: 1px solid #2a2a35;
}

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

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 500;
  color: #ffffff;
}

.footer-section {
  margin-bottom: 24px;
}

.footer-section h4 {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 400;
  font-size: 14px;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-cta {
  text-align: left;
}

.footer-cta h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.footer-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-icons {
  display: flex;
  gap: 12px;
}

.footer-icons a {
  font-size: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-icons a:hover {
  color: #ffffff;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .premium-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 80px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

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

  .premium-boxes {
    grid-template-columns: 1fr;
  }

  .faq-split {
    grid-template-columns: 1fr;
  }

  .discord-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
  }

  .discord-logo {
    width: 120px;
    height: 120px;
  }

  .discord-logo svg {
    width: 70px;
    height: 70px;
  }

  .discord-content h2 {
    font-size: 32px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav-brand {
    font-size: 20px;
  }

  .script-box {
    padding: 24px 20px;
  }

  .script-code {
    font-size: 12px;
    padding: 12px;
  }

  .cta-title {
    font-size: 36px;
    margin: 60px 0 24px;
  }

  .showcase-section {
    padding: 60px 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }

  .showcase-card h3 {
    font-size: 16px;
    padding: 16px;
  }
}

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

  .section-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .feature-card,
  .premium-box {
    padding: 32px 24px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-brand {
    font-size: 18px;
  }

  .discord-content h2 {
    font-size: 28px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

  .script-code {
    font-size: 11px;
  }

  .showcase-section {
    padding: 40px 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 30px 0;
  }

  .showcase-card h3 {
    font-size: 14px;
    padding: 12px;
  }
}

/* Landscape mobile devices */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }
}

/* Showcase Section */
.showcase-section {
  padding: 100px 20px;
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 60px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(88, 175, 233, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.showcase-card:hover {
  border-color: rgba(88, 175, 233, 0.8);
  background: rgba(25, 25, 30, 0.9);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(88, 175, 233, 0.2);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 24px;
  margin: 0;
  letter-spacing: -0.3px;
}

/* Supported Games Section */
.supported-games-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(88, 101, 242, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 140px;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  border-color: rgba(88, 101, 242, 0.6);
  background: rgba(25, 25, 30, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.15);
}

.game-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.game-status {
  background: transparent;
  border: 1px solid rgba(88, 101, 242, 0.5);
  color: rgba(88, 101, 242, 0.9);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-status.active {
  border-color: rgba(100, 200, 100, 0.6);
  color: rgba(100, 200, 100, 0.9);
  background: rgba(100, 200, 100, 0.1);
}

.game-status.soon {
  border-color: rgba(150, 150, 150, 0.4);
  color: rgba(150, 150, 150, 0.7);
  background: rgba(100, 100, 100, 0.05);
}

/* Floating Discord Widget */
.floating-discord-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.discord-widget-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #5865f2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.discord-widget-button:hover {
  background: #4752c4;
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6);
}

.discord-widget-button:active {
  transform: scale(0.95);
}

.discord-widget-button svg {
  width: 32px;
  height: 32px;
}

.discord-widget-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: #2c2f33;
  border: 1px solid rgba(88, 101, 242, 0.4);
  border-radius: 12px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.discord-widget-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.discord-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(88, 101, 242, 0.2);
  padding-bottom: 12px;
}

.discord-widget-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.widget-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.widget-close-btn:hover {
  color: #5865f2;
}

.discord-widget-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discord-widget-content p {
  color: #b9bbbe;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.widget-discord-link {
  display: inline-block;
  background: #5865f2;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.2s;
  border: none;
}

.widget-discord-link:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

/* Responsive styles for widgets */
@media (max-width: 768px) {
  .floating-discord-widget {
    bottom: 20px;
    right: 20px;
  }

  .discord-widget-button {
    width: 52px;
    height: 52px;
  }

  .discord-widget-button svg {
    width: 28px;
    height: 28px;
  }

  .discord-widget-panel {
    width: 280px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .floating-discord-widget {
    bottom: 16px;
    right: 16px;
  }

  .discord-widget-button {
    width: 48px;
    height: 48px;
  }

  .discord-widget-button svg {
    width: 24px;
    height: 24px;
  }

  .discord-widget-panel {
    width: 260px;
    bottom: 70px;
  }

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

/* Glow Effect Styles */
.glow-container {
  position: relative;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 150, 255, 0.3) 0%, rgba(0, 100, 200, 0.1) 30%, transparent 70%);
  filter: blur(80px);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

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

.glow-title {
  position: relative;
  z-index: 2;
  font-size: 56px !important;
}

.white-text {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.5);
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.8);
  }
}

.highlight-glow {
  background: linear-gradient(120deg, #00a8ff, #0066ff, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.8));
  text-shadow: 0 0 40px rgba(0, 180, 255, 0.6);
  animation: mobileFade 3s ease-in-out infinite;
}

@keyframes mobileFade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
