/* FunMateZone.com - Fresh Modern Design */

:root {
  --funmatezone-cyan: #06b6d4;
  --funmatezone-cyan-dark: #0891b2;
  --funmatezone-cyan-light: #22d3ee;
  --funmatezone-orange: #f97316;
  --funmatezone-orange-dark: #ea580c;
  --funmatezone-yellow: #fbbf24;
  --funmatezone-dark: #0f172a;
  --funmatezone-gray: #64748b;
  --funmatezone-light: #f8fafc;
  --funmatezone-white: #ffffff;
  --funmatezone-border: #e2e8f0;
  --funmatezone-shadow-cyan: 0 12px 48px rgba(6, 182, 212, 0.15);
  --funmatezone-shadow-orange: 0 12px 48px rgba(249, 115, 22, 0.15);
  --funmatezone-shadow-soft: 0 8px 32px rgba(15, 23, 42, 0.08);
  --funmatezone-radius: 24px;
  --funmatezone-radius-sm: 16px;
  --funmatezone-radius-full: 9999px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--funmatezone-dark);
  background: var(--funmatezone-light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--funmatezone-cyan);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--funmatezone-cyan-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.funmatezone-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Notice Bar */
.funmatezone-notice-bar {
  background: linear-gradient(90deg, var(--funmatezone-cyan) 0%, var(--funmatezone-orange) 100%);
  color: var(--funmatezone-white);
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Navigation */
.funmatezone-navigation {
  background: var(--funmatezone-white);
  box-shadow: var(--funmatezone-shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 2px solid var(--funmatezone-cyan);
}

.funmatezone-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.funmatezone-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 28px;
  font-weight: 800;
  color: var(--funmatezone-cyan);
  letter-spacing: -0.5px;
}

.funmatezone-brand-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--funmatezone-radius-sm);
  box-shadow: var(--funmatezone-shadow-cyan);
}

.funmatezone-nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  flex: 1;
  justify-content: flex-end;
}

.funmatezone-nav-link {
  color: var(--funmatezone-dark);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--funmatezone-radius-full);
  transition: all 0.3s ease;
  font-size: 15px;
}

.funmatezone-nav-link:hover {
  background: var(--funmatezone-light);
  color: var(--funmatezone-cyan);
  transform: translateY(-1px);
}

.funmatezone-nav-link.funmatezone-active {
  background: var(--funmatezone-cyan);
  color: var(--funmatezone-white);
}

.funmatezone-nav-cta {
  background: var(--funmatezone-orange);
  color: var(--funmatezone-white) !important;
  padding: 12px 32px;
  border-radius: var(--funmatezone-radius-full);
  font-weight: 700;
  box-shadow: var(--funmatezone-shadow-orange);
  transition: all 0.3s ease;
}

.funmatezone-nav-cta:hover {
  background: var(--funmatezone-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(249, 115, 22, 0.25);
}

.funmatezone-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--funmatezone-white);
  border: 2px solid var(--funmatezone-cyan);
  border-radius: var(--funmatezone-radius-sm);
  cursor: pointer;
  padding: 12px;
  box-shadow: var(--funmatezone-shadow-soft);
  z-index: 1001;
  position: relative;
}

.funmatezone-menu-toggle:hover {
  background: var(--funmatezone-cyan);
}

.funmatezone-menu-toggle:hover .funmatezone-menu-toggle-line {
  background: var(--funmatezone-white);
}

.funmatezone-menu-toggle-line {
  width: 26px;
  height: 3px;
  background: var(--funmatezone-cyan);
  border-radius: var(--funmatezone-radius-full);
  transition: all 0.3s ease;
}

/* Hero Section */
.funmatezone-hero {
  background: linear-gradient(135deg, var(--funmatezone-cyan) 0%, var(--funmatezone-orange) 100%);
  padding: 120px 0 100px;
  text-align: center;
  color: var(--funmatezone-white);
  position: relative;
  overflow: hidden;
}

.funmatezone-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.funmatezone-hero-content {
  position: relative;
  z-index: 1;
}

.funmatezone-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: var(--funmatezone-radius-full);
  font-size: 15px;
  margin-bottom: 28px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.funmatezone-hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.funmatezone-hero-text {
  font-size: 21px;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.96;
  line-height: 1.7;
}

.funmatezone-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--funmatezone-white);
  color: var(--funmatezone-cyan);
  padding: 20px 52px;
  border-radius: var(--funmatezone-radius-full);
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid var(--funmatezone-white);
}

.funmatezone-hero-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
  color: var(--funmatezone-cyan-dark);
}

/* Section Styles */
.funmatezone-section {
  padding: 100px 0;
}

.funmatezone-section-alt {
  background: var(--funmatezone-white);
}

/* Feature Cards - Floating Style */
.funmatezone-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.funmatezone-feature-card {
  background: var(--funmatezone-white);
  padding: 48px 36px;
  border-radius: var(--funmatezone-radius);
  box-shadow: var(--funmatezone-shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
}

.funmatezone-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--funmatezone-radius);
  padding: 3px;
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.funmatezone-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
}

.funmatezone-feature-card:hover::before {
  opacity: 1;
}

.funmatezone-feature-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  border-radius: var(--funmatezone-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--funmatezone-white);
  box-shadow: var(--funmatezone-shadow-cyan);
}

.funmatezone-feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--funmatezone-dark);
  font-weight: 800;
  text-align: center;
}

.funmatezone-feature-card p {
  color: var(--funmatezone-gray);
  line-height: 1.8;
  text-align: center;
}

/* Game Cards - Bright & Colorful */
.funmatezone-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.funmatezone-game-card {
  background: var(--funmatezone-white);
  border-radius: var(--funmatezone-radius);
  overflow: hidden;
  box-shadow: var(--funmatezone-shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid var(--funmatezone-border);
}

.funmatezone-game-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--funmatezone-shadow-cyan);
  border-color: var(--funmatezone-cyan);
}

.funmatezone-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid var(--funmatezone-cyan);
}

.funmatezone-game-content {
  padding: 28px;
}

.funmatezone-game-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--funmatezone-orange);
  color: var(--funmatezone-white);
  padding: 8px 20px;
  border-radius: var(--funmatezone-radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--funmatezone-shadow-orange);
}

.funmatezone-game-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--funmatezone-dark);
  font-weight: 800;
}

.funmatezone-game-card p {
  color: var(--funmatezone-gray);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}

.funmatezone-game-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--funmatezone-gray);
  font-weight: 600;
}

.funmatezone-game-meta i {
  color: var(--funmatezone-orange);
  margin-right: 6px;
}

/* Buttons - Pill Shape */
.funmatezone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-cyan-dark));
  color: var(--funmatezone-white);
  border-radius: var(--funmatezone-radius-full);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  box-shadow: var(--funmatezone-shadow-cyan);
}

.funmatezone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(6, 182, 212, 0.25);
  color: var(--funmatezone-white);
}

.funmatezone-btn-secondary {
  background: var(--funmatezone-white);
  color: var(--funmatezone-cyan);
  border: 3px solid var(--funmatezone-cyan);
  box-shadow: var(--funmatezone-shadow-soft);
}

.funmatezone-btn-secondary:hover {
  background: var(--funmatezone-cyan);
  color: var(--funmatezone-white);
}

.funmatezone-btn-lg {
  padding: 20px 56px;
  font-size: 19px;
}

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

.funmatezone-game-launch {
  width: 100%;
  padding: 16px 28px;
  background: var(--funmatezone-orange);
  color: var(--funmatezone-white);
  border: none;
  border-radius: var(--funmatezone-radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: var(--funmatezone-shadow-orange);
}

.funmatezone-game-launch:hover {
  background: var(--funmatezone-orange-dark);
  transform: scale(1.05);
}

.funmatezone-game-launch i {
  margin-right: 8px;
}

/* Stats - Colorful Cards */
.funmatezone-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.funmatezone-stat-card {
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-cyan-dark));
  padding: 40px 32px;
  border-radius: var(--funmatezone-radius);
  text-align: center;
  box-shadow: var(--funmatezone-shadow-cyan);
  color: var(--funmatezone-white);
  transition: all 0.3s ease;
}

.funmatezone-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.funmatezone-stat-card:nth-child(2) {
  background: linear-gradient(135deg, var(--funmatezone-orange), var(--funmatezone-orange-dark));
  box-shadow: var(--funmatezone-shadow-orange);
}

.funmatezone-stat-card:nth-child(3) {
  background: linear-gradient(135deg, #10b981, #059669);
}

.funmatezone-stat-card:nth-child(4) {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.funmatezone-stat-number {
  font-size: 56px;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.funmatezone-stat-label {
  font-size: 17px;
  font-weight: 600;
  opacity: 0.95;
}

/* CTA Box - Asymmetric */
.funmatezone-cta-box {
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  padding: 72px 60px;
  border-radius: var(--funmatezone-radius);
  text-align: center;
  color: var(--funmatezone-white);
  box-shadow: var(--funmatezone-shadow-cyan);
  position: relative;
  overflow: hidden;
}

.funmatezone-cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.funmatezone-cta-box h2 {
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 900;
  position: relative;
  letter-spacing: -1px;
}

.funmatezone-cta-box p {
  font-size: 19px;
  margin-bottom: 40px;
  opacity: 0.96;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.funmatezone-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Alert Box - Rounded */
.funmatezone-alert {
  padding: 28px 32px;
  border-radius: var(--funmatezone-radius);
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.funmatezone-alert-info {
  background: rgba(6, 182, 212, 0.1);
  color: var(--funmatezone-dark);
  border: 3px solid var(--funmatezone-cyan);
}

.funmatezone-alert i {
  font-size: 28px;
  flex-shrink: 0;
  color: var(--funmatezone-cyan);
}

/* Form Styles - Clean & Modern */
.funmatezone-form-group {
  margin-bottom: 28px;
}

.funmatezone-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--funmatezone-dark);
  font-size: 15px;
}

.funmatezone-form-label i {
  color: var(--funmatezone-cyan);
  margin-right: 8px;
}

.funmatezone-form-input {
  width: 100%;
  padding: 16px 22px;
  border: 3px solid var(--funmatezone-border);
  border-radius: var(--funmatezone-radius-sm);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--funmatezone-white);
}

.funmatezone-form-input:focus {
  outline: none;
  border-color: var(--funmatezone-cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.funmatezone-form-input::placeholder {
  color: #94a3b8;
}

textarea.funmatezone-form-input {
  resize: vertical;
  min-height: 160px;
}

#form-response {
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: var(--funmatezone-radius-sm);
  display: none;
  font-weight: 600;
}

#form-response.success {
  background: #d1fae5;
  color: #065f46;
  border: 3px solid #10b981;
  display: block;
}

#form-response.error {
  background: #fee2e2;
  color: #991b1b;
  border: 3px solid #ef4444;
  display: block;
}

/* Contact Grid */
.funmatezone-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.funmatezone-contact-card {
  background: var(--funmatezone-white);
  padding: 48px 40px;
  border-radius: var(--funmatezone-radius);
  box-shadow: var(--funmatezone-shadow-soft);
  border: 3px solid var(--funmatezone-border);
}

.funmatezone-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.funmatezone-contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  border-radius: var(--funmatezone-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--funmatezone-white);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--funmatezone-shadow-cyan);
}

.funmatezone-contact-info-text h4 {
  margin-bottom: 10px;
  color: var(--funmatezone-dark);
  font-weight: 800;
  font-size: 18px;
}

.funmatezone-contact-info-text p {
  color: var(--funmatezone-gray);
  margin: 0;
  line-height: 1.7;
}

/* Footer - Bold & Colorful */
.funmatezone-footer {
  background: var(--funmatezone-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 40px;
  margin-top: 100px;
  border-top: 4px solid var(--funmatezone-cyan);
}

.funmatezone-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.funmatezone-footer-section h3 {
  color: var(--funmatezone-white);
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 800;
}

.funmatezone-footer-section p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.funmatezone-footer-section a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.funmatezone-footer-section a:hover {
  color: var(--funmatezone-cyan-light);
}

.funmatezone-footer-disclaimer {
  padding: 40px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.9;
}

.funmatezone-footer-disclaimer p {
  margin-bottom: 18px;
}

.funmatezone-footer-bottom {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.funmatezone-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 16px;
}

/* Cookie Popup - Rounded & Bright */
.funmatezone-cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--funmatezone-white);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2);
  padding: 32px;
  z-index: 10000;
  display: none;
  border-radius: var(--funmatezone-radius);
  border: 3px solid var(--funmatezone-cyan);
}

.funmatezone-cookie-popup.show {
  display: block;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.funmatezone-cookie-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.funmatezone-cookie-text p {
  margin: 0;
  color: var(--funmatezone-dark);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.funmatezone-cookie-text a {
  color: var(--funmatezone-cyan);
  font-weight: 700;
  text-decoration: underline;
}

.funmatezone-cookie-buttons {
  display: flex;
  gap: 12px;
}

.funmatezone-cookie-accept {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  color: var(--funmatezone-white);
  border: none;
  border-radius: var(--funmatezone-radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: var(--funmatezone-shadow-cyan);
}

.funmatezone-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

/* Page Header */
.funmatezone-page-header {
  background: linear-gradient(135deg, var(--funmatezone-cyan), var(--funmatezone-orange));
  padding: 100px 0 80px;
  text-align: center;
  color: var(--funmatezone-white);
  border-bottom: 4px solid var(--funmatezone-orange);
}

.funmatezone-page-header-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--funmatezone-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.funmatezone-page-header h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}

.funmatezone-page-header-subtitle {
  font-size: 21px;
  opacity: 0.96;
  max-width: 700px;
  margin: 0 auto;
}

/* Legal Content */
.funmatezone-legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.funmatezone-legal-section {
  margin-bottom: 56px;
  background: var(--funmatezone-white);
  padding: 40px;
  border-radius: var(--funmatezone-radius);
  box-shadow: var(--funmatezone-shadow-soft);
  border: 3px solid var(--funmatezone-border);
}

.funmatezone-legal-section h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--funmatezone-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.funmatezone-legal-section h2 i {
  color: var(--funmatezone-cyan);
}

.funmatezone-legal-section h3 {
  font-size: 25px;
  margin: 32px 0 18px;
  color: var(--funmatezone-dark);
  font-weight: 800;
}

.funmatezone-legal-section h4 {
  font-size: 20px;
  margin: 28px 0 14px;
  color: var(--funmatezone-cyan);
  font-weight: 700;
}

.funmatezone-legal-section p {
  margin-bottom: 18px;
  line-height: 1.9;
  color: var(--funmatezone-gray);
  font-size: 16px;
}

.funmatezone-legal-list {
  list-style: none;
  margin: 24px 0;
}

.funmatezone-legal-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  line-height: 1.8;
  color: var(--funmatezone-gray);
}

.funmatezone-legal-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--funmatezone-cyan);
  font-size: 24px;
  top: 10px;
}

/* Text Utilities */
.funmatezone-text-center {
  text-align: center;
}

.funmatezone-text-center h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--funmatezone-dark);
  letter-spacing: -1px;
}

.funmatezone-text-center p {
  font-size: 19px;
  color: var(--funmatezone-gray);
  max-width: 640px;
  margin: 0 auto;
}

.funmatezone-mb-2 {
  margin-bottom: 16px;
}

.funmatezone-mb-3 {
  margin-bottom: 24px;
}

.funmatezone-mb-4 {
  margin-bottom: 32px;
}

.funmatezone-mb-5 {
  margin-bottom: 48px;
}

.funmatezone-mt-3 {
  margin-top: 24px;
}

.funmatezone-mt-4 {
  margin-top: 32px;
}

.funmatezone-mt-5 {
  margin-top: 48px;
}

.funmatezone-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .funmatezone-nav-links {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--funmatezone-white);
    flex-direction: column;
    padding: 28px;
    box-shadow: var(--funmatezone-shadow-soft);
    gap: 8px;
    display: none;
    border-top: 2px solid var(--funmatezone-cyan);
  }

  .funmatezone-nav-links.active {
    display: flex;
  }

  .funmatezone-nav-links li {
    width: 100%;
  }

  .funmatezone-nav-link {
    display: block;
    padding: 16px;
    text-align: center;
    width: 100%;
  }

  .funmatezone-nav-cta {
    margin-top: 12px;
    display: block;
    text-align: center;
  }

  .funmatezone-menu-toggle {
    display: flex;
  }

  .funmatezone-hero h1 {
    font-size: 40px;
  }

  .funmatezone-hero-text {
    font-size: 17px;
  }

  .funmatezone-hero {
    padding: 80px 0 60px;
  }

  .funmatezone-grid-3,
  .funmatezone-grid-4,
  .funmatezone-games-grid {
    grid-template-columns: 1fr;
  }

  .funmatezone-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .funmatezone-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .funmatezone-section {
    padding: 60px 0;
  }

  .funmatezone-page-header h1 {
    font-size: 36px;
  }

  .funmatezone-cookie-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 24px;
  }

  .funmatezone-cta-buttons {
    flex-direction: column;
  }

  .funmatezone-cta-box {
    padding: 48px 32px;
  }

  .funmatezone-cta-box h2 {
    font-size: 32px;
  }

  .funmatezone-text-center h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .funmatezone-hero h1 {
    font-size: 32px;
  }

  .funmatezone-page-header h1 {
    font-size: 28px;
  }

  .funmatezone-feature-card {
    padding: 32px 24px;
  }

  .funmatezone-game-content {
    padding: 24px;
  }

  .funmatezone-container {
    padding: 0 16px;
  }
}
