/* TopMatchZone - Ireland Sports Betting Guide - Modern Design */
:root {
  --topmatchzone-primary: #1e40af;
  --topmatchzone-primary-dark: #1e3a8a;
  --topmatchzone-primary-light: #3b82f6;
  --topmatchzone-secondary: #dc2626;
  --topmatchzone-secondary-dark: #b91c1c;
  --topmatchzone-accent: #059669;
  --topmatchzone-accent-dark: #047857;
  --topmatchzone-success: #10b981;
  --topmatchzone-warning: #f59e0b;
  --topmatchzone-error: #ef4444;
  --topmatchzone-background: #f8fafc;
  --topmatchzone-card-bg: #ffffff;
  --topmatchzone-card-hover: #f1f5f9;
  --topmatchzone-text: #0f172a;
  --topmatchzone-text-muted: #475569;
  --topmatchzone-border: #cbd5e1;
  --topmatchzone-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  --topmatchzone-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --topmatchzone-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --topmatchzone-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--topmatchzone-text);
  background: var(--topmatchzone-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--topmatchzone-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--topmatchzone-text-muted);
  line-height: 1.7;
}

a {
  color: var(--topmatchzone-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--topmatchzone-primary-dark);
}

/* Header & Navigation */
.topmatchzone-header {
  background: #ffffff;
  border-bottom: 2px solid var(--topmatchzone-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--topmatchzone-shadow);
}

.topmatchzone-nav {
  padding: 1.25rem 0;
}

.topmatchzone-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.topmatchzone-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--topmatchzone-text);
  transition: transform 0.3s ease;
}

.topmatchzone-logo:hover {
  transform: translateY(-2px);
  color: var(--topmatchzone-text);
}

.topmatchzone-logo img {
  width: 48px;
  height: 48px;
}

.topmatchzone-logo-text {
  background: linear-gradient(135deg, var(--topmatchzone-primary) 0%, var(--topmatchzone-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topmatchzone-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--topmatchzone-primary);
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  min-width: 44px;
  min-height: 44px;
}

.topmatchzone-burger span {
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.topmatchzone-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topmatchzone-menu-item {
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--topmatchzone-text);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.topmatchzone-menu-item:hover {
  background: var(--topmatchzone-card-bg);
  color: var(--topmatchzone-primary);
}

.topmatchzone-menu-item.active {
  background: var(--topmatchzone-primary);
  color: #ffffff;
}

.topmatchzone-menu-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff !important;
  background: var(--topmatchzone-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--topmatchzone-shadow-md);
}

.topmatchzone-menu-cta:hover {
  background: var(--topmatchzone-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--topmatchzone-shadow-lg);
}

/* Main Content */
.topmatchzone-main {
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.topmatchzone-hero {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #f8fafc 100%);
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--topmatchzone-border);
}

.topmatchzone-hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.topmatchzone-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topmatchzone-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--topmatchzone-primary);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.topmatchzone-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
}

.topmatchzone-accent-text {
  color: var(--topmatchzone-primary);
}

.topmatchzone-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--topmatchzone-text-muted);
  margin-bottom: 0;
}

.topmatchzone-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.topmatchzone-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--topmatchzone-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  box-shadow: var(--topmatchzone-shadow-md);
  transition: all 0.3s ease;
}

.topmatchzone-btn-primary:hover {
  background: var(--topmatchzone-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--topmatchzone-shadow-lg);
  color: #ffffff;
}

.topmatchzone-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: var(--topmatchzone-text);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  border: 2px solid var(--topmatchzone-border);
  transition: all 0.3s ease;
}

.topmatchzone-btn-secondary:hover {
  border-color: var(--topmatchzone-primary);
  color: var(--topmatchzone-primary);
  transform: translateY(-2px);
}

.topmatchzone-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--topmatchzone-border);
}

.topmatchzone-stat {
  text-align: left;
}

.topmatchzone-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--topmatchzone-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.topmatchzone-stat-label {
  font-size: 0.9rem;
  color: var(--topmatchzone-text-muted);
  font-weight: 600;
}

.topmatchzone-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Featured Platforms Section */
.topmatchzone-featured {
  padding: 5rem 2rem;
  background: #ffffff;
}

.topmatchzone-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.topmatchzone-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.topmatchzone-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--topmatchzone-text);
}

.topmatchzone-section-desc {
  font-size: 1.1rem;
  color: var(--topmatchzone-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.topmatchzone-platforms-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topmatchzone-platform {
  background: var(--topmatchzone-card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--topmatchzone-border);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topmatchzone-platform:hover {
  transform: translateX(5px);
  box-shadow: var(--topmatchzone-shadow-xl);
  border-color: var(--topmatchzone-primary);
}

.topmatchzone-platform-logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--topmatchzone-card-bg);
  border-radius: 12px;
  border: 2px solid var(--topmatchzone-border);
  padding: 1rem;
}

.topmatchzone-platform-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.topmatchzone-platform-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.topmatchzone-platform-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topmatchzone-platform-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--topmatchzone-primary) 0%, var(--topmatchzone-primary-light) 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  box-shadow: var(--topmatchzone-shadow);
}

.topmatchzone-platform-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  color: var(--topmatchzone-text);
}

.topmatchzone-platform-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--topmatchzone-warning);
}

.topmatchzone-rating-text {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--topmatchzone-text);
  font-size: 1rem;
}

.topmatchzone-platform-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.topmatchzone-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--topmatchzone-background);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--topmatchzone-text);
}

.topmatchzone-feature i {
  color: var(--topmatchzone-accent);
  font-size: 1rem;
}

.topmatchzone-platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--topmatchzone-primary) 0%, var(--topmatchzone-primary-dark) 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  box-shadow: var(--topmatchzone-shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
}

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

/* Why Choose Us Section */
.topmatchzone-why {
  padding: 5rem 2rem;
  background: var(--topmatchzone-background);
}

.topmatchzone-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.topmatchzone-reason {
  text-align: center;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--topmatchzone-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.topmatchzone-reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--topmatchzone-shadow-lg);
  border-color: var(--topmatchzone-primary);
}

.topmatchzone-reason-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--topmatchzone-primary) 0%, var(--topmatchzone-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--topmatchzone-shadow-md);
}

.topmatchzone-reason-icon i {
  font-size: 2.25rem;
  color: #ffffff;
}

.topmatchzone-reason h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--topmatchzone-text);
}

.topmatchzone-reason p {
  color: var(--topmatchzone-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.topmatchzone-footer {
  background: var(--topmatchzone-text);
  color: #cbd5e1;
  padding: 4rem 2rem 2rem;
}

.topmatchzone-footer h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.topmatchzone-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.topmatchzone-footer-contacts p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.topmatchzone-footer-contacts i {
  color: var(--topmatchzone-secondary);
  font-size: 1.1rem;
}

.topmatchzone-footer-contacts a {
  color: #cbd5e1;
  text-decoration: none;
}

.topmatchzone-footer-contacts a:hover {
  color: var(--topmatchzone-secondary);
}

.topmatchzone-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topmatchzone-footer-list li {
  margin-bottom: 0.85rem;
}

.topmatchzone-footer-list a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.topmatchzone-footer-list a:hover {
  color: var(--topmatchzone-secondary);
  transform: translateX(4px);
}

.topmatchzone-footer-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 2rem;
}

.topmatchzone-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topmatchzone-footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
}

.topmatchzone-footer-disclaimer p {
  margin-bottom: 0.75rem;
  color: #94a3b8;
}

.topmatchzone-footer-disclaimer strong {
  color: #cbd5e1;
}

.topmatchzone-footer-disclaimer a {
  color: var(--topmatchzone-primary-light);
}

.topmatchzone-footer-copyright {
  text-align: center;
  font-size: 0.9rem;
}

.topmatchzone-footer-copyright p {
  color: #94a3b8;
  margin: 0;
}

.topmatchzone-responsible-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.topmatchzone-responsible-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.topmatchzone-responsible-logos a:hover {
  transform: scale(1.05);
}

.topmatchzone-responsible-logos img {
  height: 50px;
  width: auto;
  opacity: 0.9;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 4px;
}

/* Cookie Consent */
.topmatchzone-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.75rem 2rem;
  border-top: 3px solid var(--topmatchzone-primary);
}

.topmatchzone-hidden {
  display: none !important;
}

.topmatchzone-visible {
  display: block !important;
}

.topmatchzone-cookie-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.topmatchzone-cookie-info h5 {
  margin: 0 0 0.5rem;
  color: var(--topmatchzone-text);
  font-size: 1.1rem;
  font-weight: 700;
}

.topmatchzone-cookie-info p {
  margin: 0;
  color: var(--topmatchzone-text-muted);
  font-size: 0.95rem;
}

.topmatchzone-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.topmatchzone-cookie-buttons button {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.topmatchzone-cookie-accept {
  background: var(--topmatchzone-primary);
  color: #ffffff;
}

.topmatchzone-cookie-accept:hover {
  background: var(--topmatchzone-primary-dark);
}

/* Page Cards */
.topmatchzone-page-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: var(--topmatchzone-shadow);
  border: 1px solid var(--topmatchzone-border);
  max-width: 1200px;
  margin: 0 auto;
}

.topmatchzone-page-card h1 {
  margin-bottom: 2.5rem;
}

.topmatchzone-page-card h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.topmatchzone-page-card ul {
  padding-left: 1.75rem;
  margin-bottom: 1.75rem;
}

.topmatchzone-page-card li {
  margin-bottom: 0.85rem;
  line-height: 1.7;
  color: var(--topmatchzone-text-muted);
}

/* Contact Page */
.topmatchzone-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topmatchzone-contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.topmatchzone-contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--topmatchzone-primary) 0%, var(--topmatchzone-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.topmatchzone-contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--topmatchzone-text);
  font-size: 1.15rem;
}

.topmatchzone-contact-details p {
  margin: 0;
  color: var(--topmatchzone-text-muted);
  font-size: 1rem;
}

.topmatchzone-contact-form {
  background: var(--topmatchzone-background);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--topmatchzone-border);
}

.topmatchzone-contact-form .form-group {
  margin-bottom: 1.75rem;
}

.topmatchzone-contact-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--topmatchzone-text);
  font-size: 1rem;
}

.topmatchzone-contact-form .form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--topmatchzone-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.topmatchzone-contact-form .form-control:focus {
  outline: none;
  border-color: var(--topmatchzone-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.topmatchzone-faq-item {
  background: var(--topmatchzone-background);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.75rem;
  border: 1px solid var(--topmatchzone-border);
}

.topmatchzone-faq-item h4 {
  color: var(--topmatchzone-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.15rem;
}

.topmatchzone-about-icon {
  color: var(--topmatchzone-primary);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .topmatchzone-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .topmatchzone-hero-stats {
    justify-content: center;
  }

  .topmatchzone-platform {
    flex-direction: column;
    text-align: center;
  }

  .topmatchzone-platform-header {
    justify-content: center;
  }

  .topmatchzone-platform-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .topmatchzone-burger {
    display: flex;
  }

  .topmatchzone-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--topmatchzone-shadow-lg);
    display: none;
    gap: 1rem;
    border-top: 2px solid var(--topmatchzone-border);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .topmatchzone-menu.active {
    display: flex !important;
  }

  .topmatchzone-menu-item,
  .topmatchzone-menu-cta {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
    display: block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  .topmatchzone-hero {
    padding: 3rem 1.5rem;
  }

  .topmatchzone-hero-actions {
    flex-direction: column;
  }

  .topmatchzone-hero-actions .topmatchzone-btn-primary,
  .topmatchzone-hero-actions .topmatchzone-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .topmatchzone-featured {
    padding: 4rem 1.5rem;
  }

  .topmatchzone-why {
    padding: 4rem 1.5rem;
  }

  .topmatchzone-reasons {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .topmatchzone-cookie-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .topmatchzone-cookie-buttons button {
    width: 100%;
  }

  .topmatchzone-page-card {
    padding: 2.5rem 1.75rem;
  }

  .topmatchzone-footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .topmatchzone-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .topmatchzone-platform-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .topmatchzone-nav-container {
    padding: 0 1.5rem;
  }

  .topmatchzone-logo-text {
    font-size: 1.25rem;
  }

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

  .topmatchzone-hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .topmatchzone-stat {
    flex: 1;
    min-width: 90px;
  }

  .topmatchzone-page-card {
    padding: 2rem 1.5rem;
  }

  .topmatchzone-platform-name {
    font-size: 1.5rem;
  }

  .topmatchzone-footer-disclaimer {
    font-size: 0.85rem;
  }
}
