<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive CSS for BetMatchZone */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .hero-content h2 {
    font-size: 4rem;
  }
}

/* Medium Desktops (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .hero-content h2 {
    font-size: 3.2rem;
  }

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

/* Tablets and Small Desktops (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .hero-content h2 {
    font-size: 2.8rem;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    flex-direction: column;
  }

  .about-image, .about-text {
    width: 100%;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    width: 100%;
  }
}

/* Mobile Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 17, 40, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: var(--spacing-md) 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

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

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .contact-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

/* Small Mobile Devices (Up to 575px) */
@media (max-width: 575px) {
  .logo h1 {
    font-size: 1.3rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 17, 40, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: var(--spacing-md) 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

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

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

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

  .about-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .contact-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .disclaimer-content p {
    font-size: 0.8rem;
  }
}

/* Height Responsive */
@media (max-height: 600px) {
  .hero-banner {
    height: auto;
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
  }

  .hero-content {
    padding: var(--spacing-lg) 0;
  }
}

/* Landscape Mode */
@media (max-width: 991px) and (orientation: landscape) {
  .hero-banner {
    height: auto;
    min-height: 100vh;
  }

  .nav-menu.active {
    overflow-y: auto;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .hero-banner, .magical-background, .magical-particles {
    background: none !important;
  }

  .nav-menu, .cta-button, .submit-button, .play-button {
    display: none !important;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .about-content, .contact-content, .footer-content {
    flex-direction: column;
  }

  .disclaimer {
    border: 1px solid #000;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
  }
}</pre></body></html>