/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

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

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

/* Background Gradient */
.bg-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
  min-height: 100vh;
}

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

/* Header */
.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.brand-accent {
  color: #fbbf24;
}

.brand-tagline {
  font-size: 0.875rem;
  color: #d1d5db;
  display: none;
}

@media (min-width: 768px) {
  .brand-tagline {
    display: block;
  }
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fbbf24;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 60;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 55;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fbbf24;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 4xl;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-accent {
  color: #fbbf24;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-btn {
  display: inline-block;
  background: #fbbf24;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.hero-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

/* Promo Section */
.promo-section {
  margin-bottom: 4rem;
}

.promo-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.promo-header {
  text-align: center;
  margin-bottom: 2rem;
}

.promo-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.promo-description {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.promo-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promo-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.promo-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.promo-label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.promo-text {
  color: #d1d5db;
  font-size: 0.875rem;
}

.promo-footer {
  text-align: center;
  padding-top: 1rem;
}

.promo-btn {
  display: inline-block;
  background: #7c3aed;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

/* Content Section */
.content-section {
  margin-bottom: 4rem;
}

.content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.content-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.content-card:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.card-content {
  color: #d1d5db;
}

.card-text {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-meta {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Info Section */
.info-section {
  margin-bottom: 4rem;
}

.info-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.info-header {
  text-align: center;
  margin-bottom: 2rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.info-content {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.8;
}

.info-content p {
  margin-bottom: 1.5rem;
}

/* Alert Section */
.alert-section {
  margin-bottom: 2rem;
}

.alert-box {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.alert-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.alert-text {
  color: #d1d5db;
}

/* Page Logo */
.page-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-badge {
  display: inline-block;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-amber {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000000;
}

.logo-blue {
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
}

.logo-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.logo-red {
  background: linear-gradient(135deg, #ef4444, #ec4899);
}

.logo-indigo {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
}

.logo-emerald {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.logo-violet {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Page Title */
.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

/* Page Content */
.page-content {
  max-width: 4xl;
  margin: 0 auto;
}

.content-card-large {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.content-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

.content-subtitle.amber {
  color: #fbbf24;
}

.content-subtitle.green {
  color: #10b981;
}

.content-subtitle.blue {
  color: #3b82f6;
}

.content-subtitle.purple {
  color: #7c3aed;
}

.content-subtitle.teal {
  color: #14b8a6;
}

.content-subtitle.red {
  color: #ef4444;
}

.content-subtitle.pink {
  color: #ec4899;
}

.content-subtitle.indigo {
  color: #6366f1;
}

.content-subtitle.cyan {
  color: #06b6d4;
}

.content-subtitle.emerald {
  color: #10b981;
}

.content-subtitle.violet {
  color: #8b5cf6;
}

.content-subtitle.yellow {
  color: #eab308;
}

.content-subtitle.orange {
  color: #f97316;
}

/* Page CTA */
.page-cta {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.cta-btn.amber {
  background: #fbbf24;
  color: #000000;
}

.cta-btn.amber:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.cta-btn.blue {
  background: #3b82f6;
}

.cta-btn.blue:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.cta-btn.green {
  background: #10b981;
}

.cta-btn.green:hover {
  background: #059669;
  transform: translateY(-2px);
}

.cta-btn.red {
  background: #ef4444;
}

.cta-btn.red:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.cta-btn.indigo {
  background: #6366f1;
}

.cta-btn.indigo:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

.cta-btn.emerald {
  background: #10b981;
}

.cta-btn.emerald:hover {
  background: #059669;
  transform: translateY(-2px);
}

.cta-btn.violet {
  background: #8b5cf6;
}

.cta-btn.violet:hover {
  background: #7c3aed;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.dmca-badge img {
  height: auto;
  max-width: 100px;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

/* Body Menu Open State */
body.menu-open {
  overflow: hidden;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles */
a:focus,
button:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Design Improvements */
@media (max-width: 640px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .promo-card,
  .content-card-large,
  .info-card {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .mobile-menu-btn {
    display: none;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .bg-gradient {
    background: #ffffff;
  }

  .content-card-large,
  .info-card,
  .promo-card {
    border: 1px solid #000000;
    background: #ffffff;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .nav-link,
  .footer-link {
    color: #ffffff;
  }

  .content-card,
  .content-card-large,
  .info-card,
  .promo-card {
    border: 2px solid #ffffff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
