/* FunPlayHub Design System */
:root {
  --primary: #7c3aed;
  --secondary: #f472b6;
  --accent: #38bdf8;
  --bg: #f8fafc;
  --surface: #fff;
  --text: #1e293b;
  --text-light: #64748b;
  --radius: 2.5rem;
  --shadow: 0 8px 32px rgba(124,58,237,0.12);
  --shadow-lg: 0 16px 48px rgba(56,189,248,0.15);
}

html {
  font-size: 13px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* Navigation */
.funplayhub-navbar-pill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem 0 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.funplayhub-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.funplayhub-navbar-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(56,189,248,0.12);
  background: var(--surface);
  object-fit: cover;
}
.funplayhub-navbar-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-left: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(124,58,237,0.15);
}
.funplayhub-navbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.funplayhub-nav-link-pill {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  background: transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  position: relative;
}
.funplayhub-nav-link-pill.active,
.funplayhub-nav-link-pill:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(244,114,182,0.15);
}
.funplayhub-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.funplayhub-navbar-toggle-bar {
  width: 30px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 80%);
  opacity: 0.25;
  z-index: 0;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.hero-content {
  flex: 1 1 0;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(56,189,248,0.12);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero-highlight {
  color: var(--accent);
  background: #fff2;
  border-radius: 1rem;
  padding: 0.1em 0.5em;
  font-weight: 900;
}
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f3e8ff;
  line-height: 1.7;
}
.hero-notice {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
}
.hero-image-container {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff2;
  background: #fff4;
}

/* Buttons */
.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(244,114,182,0.18);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff2;
  color: var(--accent);
}

/* Features Grid */
.features-section {
  background: var(--surface);
  padding: 5rem 0 4rem 0;
  border-radius: var(--radius);
  margin: 3rem 0;
  box-shadow: var(--shadow);
}
.section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: linear-gradient(120deg, #f3e8ff 0%, #f0fdfa 100%);
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(56,189,248,0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(124,58,237,0.13);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  background: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(56,189,248,0.10);
}

/* Process Steps */
.process-section {
  background: linear-gradient(90deg, #f0fdfa 0%, #f3e8ff 100%);
  padding: 4rem 0 3rem 0;
  border-radius: var(--radius);
  margin: 3rem 0;
  box-shadow: var(--shadow);
}
.process-steps {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.step {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 8px 32px rgba(56,189,248,0.13);
}
.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  background: #f3e8ff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
}

/* Game Showcase */
.games-showcase {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4rem 0 3rem 0;
  margin: 3rem 0;
}
.game-showcase h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.game-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.game-frame {
  width: 100%;
  max-width: 1200px;
  min-width: 700px;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  border-radius: 2rem;
  border: 4px solid #f3e8ff;
  box-shadow: 0 4px 24px rgba(56,189,248,0.10);
  background: #fff;
}
@supports not (aspect-ratio: 4 / 3) {
  .game-frame {
    height: calc(0.75 * 100vw);
    max-height: calc(0.75 * 1200px);
    min-height: calc(0.75 * 700px);
  }
}
@media (max-width: 1300px) {
  .game-frame {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 900px) {
  .game-frame {
    max-width: 100vw;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .game-frame {
    max-width: 100vw;
    min-width: 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* Community Section */
.community-section {
  background: linear-gradient(90deg, #f3e8ff 0%, #f0fdfa 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4rem 0 3rem 0;
  margin: 3rem 0;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.community-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.community-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(244,114,182,0.13);
}

/* Footer */
.funplayhub-footer {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 3rem 0 2rem 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 5rem;
  box-shadow: 0 -4px 24px rgba(124,58,237,0.10);
}
.funplayhub-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.funplayhub-footer p {
  margin-bottom: 0.5rem;
  color: #f3e8ff;
}
.funplayhub-footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.funplayhub-footer a:hover {
  color: var(--accent);
}

/* Forms */
.support-form, .contact-form-section form {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.08);
  padding: 2.5rem 2rem;
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
  border: 2px solid #f3e8ff;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  transition: border 0.2s;
}
.form-control:focus {
  border: 2px solid var(--accent);
  outline: none;
}

/* Helpdesk Layout */
.helpdesk-main {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}
.helpdesk-left, .helpdesk-right {
  flex: 1 1 0;
  min-width: 320px;
}
.contact-form-section {
  margin-bottom: 2rem;
}
.contact-info-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.08);
  padding: 1.5rem 1.2rem;
  margin-top: 2rem;
}
.contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  margin-bottom: 0.7rem;
  color: var(--text-light);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.contact-info-list a {
  color: var(--accent);
  text-decoration: underline;
}
.helpdesk-faq-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(56,189,248,0.08);
  padding: 2rem 1.5rem;
}
.helpdesk-faq-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}



/* Cookie Consent Banner */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  z-index: 9999;
  padding: 1em 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

/* Age Badge */
.age-badge {
  display: inline-block;
  background: #fff;
  color: #b30000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1.5em;
  font-size: 1.5em;
  padding-top: 8px;
  font-weight: 900;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-image {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 900px) {
  .helpdesk-main {
    flex-direction: column;
    gap: 2rem;
  }
  .funplayhub-navbar-inner {
    flex-direction: row;
    padding: 0 1rem;
  }
  .funplayhub-navbar-right {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    background: var(--primary);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(124,58,237,0.12);
    flex-direction: column;
    min-width: 180px;
    padding: 1rem 0.5rem;
    z-index: 2000;
  }
  .funplayhub-navbar-right.open {
    display: flex;
  }
  .funplayhub-navbar-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2rem;
  }
  .features-grid, .community-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .games-showcase, .features-section, .process-section, .community-section {
    padding: 2rem 0 1.5rem 0;
    margin: 1.5rem 0;
  }
}
@media (max-width: 500px) {
  .hero-image {
    width: 140px;
    height: 140px;
  }
  .funplayhub-navbar-title {
    font-size: 1.2rem;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
} 


.btn {
  color: #000
}