/* ========================================
   Torneo Roblox: Rivals - Landing Page
   Colores basados en la imagen proporcionada
   ======================================== */

:root {
  /* Colores principales - Basados en la imagen del torneo */
  --primary-blue: #1a3a5c;
  --primary-blue-light: #2563eb;
  --primary-blue-dark: #0f172a;
  --accent-orange: #f59e0b;
  --accent-yellow: #fbbf24;
  --accent-gold: #eab308;
  
  /* Neutrales */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Estados */
  --success: #22c55e;
  --whatsapp: #25d366;
  
  /* Tipografía */
  --font-display: 'Russo One', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Bordes */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-orange);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.header-btn {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--accent-orange);
}

.mobile-btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
  background: var(--accent-orange);
  color: var(--gray-900);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  color: var(--gray-900);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.title-torneo {
  display: block;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-roblox {
  display: block;
  font-size: clamp(2.5rem, 10vw, 5rem);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-rivals {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray-200);
  margin-bottom: 0.5rem;
}

.hero-modalidad {
  font-size: 1rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-youtube {
  margin-bottom: 1.5rem;
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
}

.hero-image {
  margin-top: 2rem;
  max-width: 100%;
  z-index: 1;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

/* ========================================
   Event Info Cards
   ======================================== */
.event-info {
  background: rgba(0, 0, 0, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.info-icon svg {
  width: 32px;
  height: 32px;
}

.info-card h3 {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.info-card p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

/* ========================================
   Prizes Section
   ======================================== */
.prizes {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
}

.prize-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prize-gold {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.prize-silver {
  border: 2px solid var(--gray-400);
}

.prize-badge {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.prize-card h3 {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.prize-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-gold);
}

.prize-silver .prize-amount {
  color: var(--gray-300);
}

.prizes-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   Cupos Section
   ======================================== */
.cupos-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

.cupos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cupos-stat {
  padding: 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cupos-stat.highlight .stat-number {
  color: var(--accent-orange);
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
  border-radius: 6px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-text {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* ========================================
   Participants Section
   ======================================== */
.search-container {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.2s;
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.1);
}

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

.participant-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.participant-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-orange);
}

.participant-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.participant-info {
  flex: 1;
}

.participant-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.participant-dni {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.participant-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.2);
  color: var(--success);
  border-radius: 1rem;
}

.participants-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-top: 2rem;
}

.no-participants {
  text-align: center;
  color: var(--gray-400);
  padding: 3rem;
}

/* ========================================
   Modalidad Section
   ======================================== */
.modalidad-content {
  max-width: 800px;
  margin: 0 auto;
}

.modalidad-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
}

.modalidad-list {
  list-style: none;
}

.modalidad-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-200);
}

.modalidad-list li:last-child {
  border-bottom: none;
}

.bracket-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.bracket-stage {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.bracket-stage.final {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  color: var(--gray-900);
}

.stage-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.bracket-arrow {
  color: var(--gray-400);
  font-size: 1.5rem;
}

.modalidad-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ========================================
   Accordion
   ======================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: transform 0.3s;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p,
.accordion-content ul {
  padding: 0 1.25rem 1.25rem 1.25rem;
  margin-left: 0.5rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ========================================
   Legal Cards
   ======================================== */
.legal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.legal-card p {
  margin-bottom: 1rem;
  color: var(--gray-200);
}

.legal-card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--gray-300);
}

.legal-card li {
  margin-bottom: 0.5rem;
}

.terms-list {
  list-style: none;
  padding-left: 0 !important;
}

.terms-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-list li:last-child {
  border-bottom: none;
}

/* ========================================
   Authorization Section
   ======================================== */
.auth-card {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid var(--accent-orange);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.auth-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-card-title svg {
  flex-shrink: 0;
}

.auth-card p {
  color: var(--gray-200);
  margin-bottom: 1.5rem;
}

.auth-list {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.auth-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-list li:last-child {
  border-bottom: none;
}

.auth-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.1) 50%, transparent 100%);
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta p {
  color: var(--gray-200);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-phone {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--gray-300);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--gray-900);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-info p {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-item svg {
  flex-shrink: 0;
}

.footer-youtube {
  color: #ff0000;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-youtube:hover {
  color: #cc0000;
}

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

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ========================================
   Modal
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  background: var(--gray-800);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-content h3 {
  font-family: var(--font-display);
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.modal-body p {
  margin-bottom: 0.75rem;
  color: var(--gray-200);
}

.modal-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .nav {
    display: block;
  }
  
  .header-btn {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: left;
    flex: 1;
  }
  
  .hero-tags {
    justify-content: flex-start;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-disclaimer {
    margin: 0;
  }
  
  .hero-image {
    flex: 1;
    margin-top: 0;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  section {
    padding: 6rem 0;
  }
}
