/* FunPlayTop.com - Modern Minimalist Design for Denmark */
:root {
  --funplaytop-primary: #00d4ff;
  --funplaytop-primary-dark: #00a8cc;
  --funplaytop-primary-light: #5ce1ff;
  --funplaytop-secondary: #ff6b9d;
  --funplaytop-secondary-dark: #ff3b7f;
  --funplaytop-accent: #ffa500;
  --funplaytop-accent-dark: #ff8c00;
  --funplaytop-success: #00e676;
  --funplaytop-warning: #ffab00;
  --funplaytop-error: #ff5252;
  --funplaytop-background: #ffffff;
  --funplaytop-background-alt: #f8f9fa;
  --funplaytop-card-bg: #ffffff;
  --funplaytop-card-hover: #f0f7ff;
  --funplaytop-text: #1a1a1a;
  --funplaytop-text-muted: #6c757d;
  --funplaytop-border: #e0e0e0;
  --funplaytop-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --funplaytop-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --funplaytop-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --funplaytop-gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  --funplaytop-gradient-secondary: linear-gradient(135deg, #ff6b9d 0%, #ff3b7f 100%);
  --funplaytop-gradient-hero: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

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

/* Clean, Modern Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--funplaytop-text);
  background: var(--funplaytop-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, .funplaytop-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--funplaytop-text);
}

h2, .funplaytop-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--funplaytop-text);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--funplaytop-text);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--funplaytop-text);
}

h5 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  color: var(--funplaytop-text);
}

h6 {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--funplaytop-text);
}

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

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

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

/* Navigation Bar - Clean and Minimal */
.funplaytop-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--funplaytop-border);
  transition: all 0.3s ease;
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-navbar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.funplaytop-navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--funplaytop-text);
  transition: transform 0.3s ease;
}

.funplaytop-navbar-brand:hover {
  transform: translateY(-2px);
  color: var(--funplaytop-text);
}

.funplaytop-brand-logo {
  width: auto;
  height: 48px;
  margin-right: 0.85rem;
  border-radius: 10px;
}

.funplaytop-brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--funplaytop-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funplaytop-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.funplaytop-nav-item {
  margin: 0;
}

.funplaytop-nav-link {
  padding: 0.65rem 1.15rem;
  color: var(--funplaytop-text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.funplaytop-nav-link:hover,
.funplaytop-nav-link.active {
  color: var(--funplaytop-primary);
  background: rgba(0, 212, 255, 0.08);
}

.funplaytop-nav-cta {
  background: var(--funplaytop-gradient-primary);
  color: white !important;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--funplaytop-shadow-lg);
  background: var(--funplaytop-gradient-primary);
}

/* Hamburger Menu Toggle */
.funplaytop-hamburger {
  display: none;
  flex-direction: column;
  background: transparent;
  border: 2px solid var(--funplaytop-primary);
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.funplaytop-hamburger:hover {
  background: rgba(0, 212, 255, 0.1);
}

.funplaytop-hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--funplaytop-primary);
  margin: 2.5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section - Clean and Modern */
.funplaytop-hero {
  min-height: calc(100vh - 70px);
  background: var(--funplaytop-gradient-hero);
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.funplaytop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.funplaytop-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.funplaytop-hero-content {
  animation: funplaytop-fade-in-up 0.8s ease-out;
}

.funplaytop-hero-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.12);
  color: var(--funplaytop-primary-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.funplaytop-hero-title {
  margin-bottom: 1.5rem;
}

.funplaytop-highlight {
  background: var(--funplaytop-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funplaytop-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--funplaytop-text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.funplaytop-hero-cta {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--funplaytop-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: var(--funplaytop-shadow-lg);
}

.funplaytop-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--funplaytop-shadow-xl);
  color: white;
}

.funplaytop-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: funplaytop-fade-in-up 0.8s ease-out 0.2s both;
}

.funplaytop-hero-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.12));
  border-radius: 20px;
}

/* Section Spacing */
.funplaytop-section {
  padding: 4.5rem 1.5rem;
  background: var(--funplaytop-background);
}

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

.funplaytop-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Casino Cards Grid - Minimalist Design */
.funplaytop-casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.funplaytop-casino-card {
  background: var(--funplaytop-card-bg);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  border: 1px solid var(--funplaytop-border);
  box-shadow: var(--funplaytop-shadow);
  position: relative;
  overflow: hidden;
}

.funplaytop-casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--funplaytop-gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.funplaytop-casino-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--funplaytop-shadow-xl);
  border-color: var(--funplaytop-primary-light);
}

.funplaytop-casino-card:hover::before {
  transform: scaleX(1);
}

.funplaytop-casino-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.funplaytop-casino-info {
  flex: 1;
}

.funplaytop-casino-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 0.4rem;
}

.funplaytop-casino-license {
  font-size: 0.8rem;
  color: var(--funplaytop-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.funplaytop-license-icon {
  color: var(--funplaytop-success);
}

.funplaytop-casino-rating {
  text-align: right;
}

.funplaytop-rating-stars {
  color: var(--funplaytop-accent);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.funplaytop-rating-score {
  font-weight: 700;
  color: var(--funplaytop-success);
  font-size: 1.05rem;
}

.funplaytop-casino-bonus {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(255, 59, 127, 0.08) 100%);
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.funplaytop-bonus-label {
  font-weight: 600;
  color: var(--funplaytop-secondary-dark);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.funplaytop-bonus-value {
  color: var(--funplaytop-text);
  font-size: 1rem;
  line-height: 1.5;
}

.funplaytop-casino-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.funplaytop-casino-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  color: var(--funplaytop-text-muted);
  font-size: 0.9rem;
}

.funplaytop-casino-features li:last-child {
  margin-bottom: 0;
}

.funplaytop-feature-icon {
  color: var(--funplaytop-success);
  margin-right: 0.6rem;
  font-size: 0.85rem;
}

.funplaytop-casino-btn {
  display: block;
  width: 100%;
  padding: 0.95rem;
  background: var(--funplaytop-gradient-secondary);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.funplaytop-casino-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--funplaytop-shadow-lg);
  color: white;
}

/* Page Cards */
.funplaytop-page-card {
  background: var(--funplaytop-card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
  border: 1px solid var(--funplaytop-border);
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-page-card h2 {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.funplaytop-page-card h2:first-of-type {
  margin-top: 0;
}

.funplaytop-page-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

/* Footer - Clean and Organized */
.funplaytop-footer {
  background: var(--funplaytop-background-alt);
  border-top: 1px solid var(--funplaytop-border);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 4rem;
}

.funplaytop-footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.funplaytop-footer h4 {
  color: var(--funplaytop-text);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.funplaytop-footer p {
  color: var(--funplaytop-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.funplaytop-footer-links li {
  margin-bottom: 0.65rem;
}

.funplaytop-footer-links a {
  color: var(--funplaytop-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.funplaytop-footer-links a:hover {
  color: var(--funplaytop-primary);
}

.funplaytop-footer-contact {
  margin-top: 1rem;
}

.funplaytop-footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.funplaytop-footer-contact i {
  margin-right: 0.6rem;
  color: var(--funplaytop-primary);
  width: 18px;
}

.funplaytop-footer-divider {
  border: none;
  border-top: 1px solid var(--funplaytop-border);
  margin: 2.5rem 0 1.75rem;
}

.funplaytop-footer-bottom {
  padding-top: 1.5rem;
}

.funplaytop-footer-disclaimer {
  background: rgba(255, 107, 157, 0.06);
  border: 1px solid rgba(255, 107, 157, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.funplaytop-footer-disclaimer p {
  margin-bottom: 0.75rem;
  color: var(--funplaytop-text);
  font-size: 0.9rem;
}

.funplaytop-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.funplaytop-copyright {
  text-align: center;
  color: var(--funplaytop-text-muted);
  font-size: 0.9rem;
}

/* Cookie Consent - Minimalist */
.funplaytop-cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--funplaytop-card-bg);
  border: 1px solid var(--funplaytop-border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--funplaytop-shadow-xl);
  z-index: 1001;
  backdrop-filter: blur(12px);
}

.funplaytop-cookie-content h5 {
  color: var(--funplaytop-text);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.funplaytop-cookie-content p {
  color: var(--funplaytop-text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.funplaytop-cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.funplaytop-cookie-actions .btn {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Contact Form */
.funplaytop-contact-form {
  background: var(--funplaytop-card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--funplaytop-border);
}

.funplaytop-contact-form .form-control {
  background: var(--funplaytop-background-alt);
  border: 1px solid var(--funplaytop-border);
  color: var(--funplaytop-text);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.funplaytop-contact-form .form-control:focus {
  background: var(--funplaytop-background);
  border-color: var(--funplaytop-primary);
  color: var(--funplaytop-text);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  outline: none;
}

.funplaytop-contact-form label {
  font-weight: 500;
  color: var(--funplaytop-text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.funplaytop-contact-info {
  background: var(--funplaytop-card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--funplaytop-border);
  height: 100%;
}

.funplaytop-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--funplaytop-background-alt);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.funplaytop-contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--funplaytop-gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.funplaytop-contact-details h4 {
  color: var(--funplaytop-text);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

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

/* Utility Classes */
.funplaytop-hidden {
  display: none !important;
}

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

.funplaytop-text-center {
  text-align: center;
}

/* Animations */
@keyframes funplaytop-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes funplaytop-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .funplaytop-hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .funplaytop-hero-visual {
    order: -1;
  }

  .funplaytop-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .funplaytop-casino-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .funplaytop-hero {
    min-height: auto;
    padding: 3rem 1.5rem 2.5rem;
    margin-top: 70px;
  }

  .funplaytop-section {
    padding: 3rem 1.5rem;
  }

  .funplaytop-hamburger {
    display: flex !important;
  }

  .funplaytop-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--funplaytop-background);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid var(--funplaytop-border);
    box-shadow: var(--funplaytop-shadow-lg);
    gap: 0.5rem;
  }

  .funplaytop-nav-menu.open {
    display: flex !important;
  }

  .funplaytop-nav-link {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .funplaytop-casino-grid {
    grid-template-columns: 1fr;
  }

  .funplaytop-page-card {
    padding: 1.75rem;
  }

  .funplaytop-cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.25rem;
  }

  .funplaytop-cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .funplaytop-hero {
    margin-top: 70px;
  }

  .funplaytop-hero-title {
    font-size: 2rem;
  }

  .funplaytop-hero-cta {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .funplaytop-casino-card {
    padding: 1.5rem;
  }

  .funplaytop-page-card {
    padding: 1.5rem;
  }
}

/* Hamburger Animation */
.funplaytop-hamburger.active .funplaytop-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.funplaytop-hamburger.active .funplaytop-hamburger-line:nth-child(2) {
  opacity: 0;
}

.funplaytop-hamburger.active .funplaytop-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Alert Styling */
.alert {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
}

.alert-info {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--funplaytop-text);
}

.alert-success {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.2);
  color: var(--funplaytop-text);
}

.alert-warning {
  background: rgba(255, 171, 0, 0.08);
  border-color: rgba(255, 171, 0, 0.2);
  color: var(--funplaytop-text);
}

.alert-danger {
  background: rgba(255, 82, 82, 0.08);
  border-color: rgba(255, 82, 82, 0.2);
  color: var(--funplaytop-text);
}

/* Button Styles */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.btn-success:hover {
  background: #00c853;
  color: white;
}

.btn-outline-secondary {
  background: transparent;
  border: 1px solid var(--funplaytop-border);
  color: var(--funplaytop-text-muted);
}

.btn-outline-secondary:hover {
  background: var(--funplaytop-background-alt);
  color: var(--funplaytop-text);
}

/* Form Groups */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

/* Loading Spinner */
.funplaytop-loading {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: funplaytop-spin 0.8s linear infinite;
}

@keyframes funplaytop-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   NEW HERO SECTION STYLES
   ============================================ */

.funplaytop-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--funplaytop-gradient-hero);
  overflow: hidden;
  margin-top: 70px;
}

.funplaytop-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.funplaytop-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  animation: funplaytop-float-circle 20s ease-in-out infinite;
}

.funplaytop-hero-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.funplaytop-hero-circle-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  animation-delay: 5s;
}

.funplaytop-hero-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes funplaytop-float-circle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.funplaytop-hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.funplaytop-hero-content-center {
  text-align: center;
  animation: funplaytop-fade-in-up 1s ease-out;
}

.funplaytop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  color: var(--funplaytop-primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: funplaytop-badge-pulse 2s ease-in-out infinite;
}

@keyframes funplaytop-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
}

.funplaytop-hero-title-new {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--funplaytop-text);
  margin-bottom: 1.5rem;
  animation: funplaytop-slide-in-down 1s ease-out 0.2s both;
}

.funplaytop-hero-title-gradient {
  background: var(--funplaytop-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

@keyframes funplaytop-slide-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.funplaytop-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--funplaytop-text-muted);
  margin-bottom: 3rem;
  animation: funplaytop-fade-in-up 1s ease-out 0.4s both;
}

.funplaytop-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: funplaytop-fade-in-up 1s ease-out 0.6s both;
}

.funplaytop-hero-stat-item {
  text-align: center;
}

.funplaytop-hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--funplaytop-primary);
  margin-bottom: 0.5rem;
  animation: funplaytop-count-up 1.5s ease-out 1s both;
}

@keyframes funplaytop-count-up {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.funplaytop-hero-stat-label {
  font-size: 0.9rem;
  color: var(--funplaytop-text-muted);
  font-weight: 500;
}

.funplaytop-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: funplaytop-fade-in-up 1s ease-out 0.8s both;
}

.funplaytop-hero-btn-primary,
.funplaytop-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-hero-btn-primary {
  background: var(--funplaytop-gradient-secondary);
  color: white;
}

.funplaytop-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--funplaytop-shadow-xl);
  color: white;
}

.funplaytop-hero-btn-secondary {
  background: var(--funplaytop-background);
  color: var(--funplaytop-text);
  border: 2px solid var(--funplaytop-border);
}

.funplaytop-hero-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--funplaytop-shadow-lg);
  border-color: var(--funplaytop-primary);
  color: var(--funplaytop-primary);
}

/* ============================================
   NEW CONTACT PAGE STYLES
   ============================================ */

.funplaytop-contact-hero {
  background: var(--funplaytop-gradient-hero);
  padding: 5rem 1.5rem 3rem;
  margin-top: 70px;
  text-align: center;
  animation: funplaytop-fade-in 0.8s ease-out;
}

.funplaytop-contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.funplaytop-contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--funplaytop-text);
  margin-bottom: 1rem;
  animation: funplaytop-slide-in-down 0.8s ease-out;
}

.funplaytop-contact-hero-desc {
  font-size: 1.2rem;
  color: var(--funplaytop-text-muted);
  line-height: 1.7;
  animation: funplaytop-fade-in-up 0.8s ease-out 0.2s both;
}

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

.funplaytop-contact-quick-card {
  background: var(--funplaytop-card-bg);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--funplaytop-border);
  transition: all 0.3s ease;
  animation: funplaytop-fade-in-up 0.6s ease-out both;
}

.funplaytop-contact-quick-card:nth-child(1) {
  animation-delay: 0.1s;
}

.funplaytop-contact-quick-card:nth-child(2) {
  animation-delay: 0.2s;
}

.funplaytop-contact-quick-card:nth-child(3) {
  animation-delay: 0.3s;
}

.funplaytop-contact-quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--funplaytop-shadow-lg);
  border-color: var(--funplaytop-primary-light);
}

.funplaytop-contact-quick-icon {
  width: 70px;
  height: 70px;
  background: var(--funplaytop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.funplaytop-contact-quick-card:hover .funplaytop-contact-quick-icon {
  transform: scale(1.1) rotate(10deg);
}

.funplaytop-contact-quick-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 0.75rem;
}

.funplaytop-contact-quick-card p {
  font-size: 1.05rem;
  color: var(--funplaytop-text);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.funplaytop-contact-quick-time {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--funplaytop-text-muted);
  background: var(--funplaytop-background-alt);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.funplaytop-contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.funplaytop-contact-form-wrapper {
  background: var(--funplaytop-card-bg);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--funplaytop-border);
  animation: funplaytop-slide-in-left 0.8s ease-out;
}

@keyframes funplaytop-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.funplaytop-contact-form-header {
  margin-bottom: 2rem;
}

.funplaytop-contact-form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 0.5rem;
  text-align: left;
}

.funplaytop-contact-form-header p {
  color: var(--funplaytop-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.funplaytop-contact-form-new .funplaytop-form-group {
  margin-bottom: 1.5rem;
}

.funplaytop-form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--funplaytop-text);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.funplaytop-form-group label i {
  color: var(--funplaytop-primary);
  font-size: 0.9rem;
}

.funplaytop-form-input,
.funplaytop-form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--funplaytop-background-alt);
  border: 2px solid var(--funplaytop-border);
  border-radius: 10px;
  color: var(--funplaytop-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.funplaytop-form-input:focus,
.funplaytop-form-textarea:focus {
  outline: none;
  border-color: var(--funplaytop-primary);
  background: var(--funplaytop-background);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.funplaytop-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.funplaytop-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--funplaytop-gradient-secondary);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--funplaytop-shadow);
}

.funplaytop-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--funplaytop-shadow-lg);
}

.funplaytop-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.funplaytop-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: funplaytop-slide-in-right 0.8s ease-out;
}

@keyframes funplaytop-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.funplaytop-contact-info-box {
  background: var(--funplaytop-card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--funplaytop-border);
  transition: all 0.3s ease;
}

.funplaytop-contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--funplaytop-shadow-lg);
}

.funplaytop-contact-info-icon {
  width: 60px;
  height: 60px;
  background: var(--funplaytop-gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  color: white;
}

.funplaytop-contact-info-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 1rem;
}

.funplaytop-contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.funplaytop-contact-info-list li {
  padding: 0.6rem 0;
  color: var(--funplaytop-text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--funplaytop-border);
}

.funplaytop-contact-info-list li:last-child {
  border-bottom: none;
}

.funplaytop-contact-help-box {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border-color: rgba(0, 230, 118, 0.2);
}

.funplaytop-contact-help-box .funplaytop-contact-info-icon {
  background: var(--funplaytop-gradient-primary);
}

.funplaytop-contact-help-box p {
  color: var(--funplaytop-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.funplaytop-contact-help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: var(--funplaytop-success);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.funplaytop-contact-help-link:hover {
  background: #00c853;
  transform: translateY(-2px);
  box-shadow: var(--funplaytop-shadow);
  color: white;
}

.funplaytop-contact-help-label {
  display: block;
  font-size: 0.8rem;
  color: var(--funplaytop-text-muted);
  font-style: italic;
}

.funplaytop-contact-faq {
  margin-top: 4rem;
  animation: funplaytop-fade-in-up 0.8s ease-out 0.4s both;
}

.funplaytop-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.funplaytop-faq-item {
  background: var(--funplaytop-card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--funplaytop-border);
  transition: all 0.3s ease;
}

.funplaytop-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--funplaytop-shadow-lg);
  border-color: var(--funplaytop-primary-light);
}

.funplaytop-faq-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--funplaytop-primary);
  transition: all 0.3s ease;
}

.funplaytop-faq-item:hover .funplaytop-faq-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0, 212, 255, 0.2);
}

.funplaytop-faq-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.funplaytop-faq-item p {
  color: var(--funplaytop-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive Updates */
@media (max-width: 992px) {
  .funplaytop-contact-main-grid {
    grid-template-columns: 1fr;
  }

  .funplaytop-hero-stats {
    gap: 2rem;
  }

  .funplaytop-hero-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .funplaytop-hero-new {
    min-height: 80vh;
    padding: 2rem 1rem;
  }

  .funplaytop-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .funplaytop-hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .funplaytop-contact-hero {
    padding: 4rem 1.5rem 2rem;
  }

  .funplaytop-contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .funplaytop-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .funplaytop-hero-title-new {
    font-size: 2rem;
  }

  .funplaytop-hero-stat-number {
    font-size: 1.8rem;
  }

  .funplaytop-contact-form-wrapper {
    padding: 1.75rem;
  }
}

/* ===================================
   LEGAL PAGES STYLES
   =================================== */

/* Legal Page Hero */
.funplaytop-legal-hero {
  background: var(--funplaytop-gradient-hero);
  padding: 5rem 1.5rem 3rem;
  margin-top: 70px;
  text-align: center;
  animation: funplaytop-fade-in 0.8s ease-out;
}

.funplaytop-legal-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.funplaytop-legal-icon {
  width: 80px;
  height: 80px;
  background: var(--funplaytop-gradient-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  animation: funplaytop-fade-in-up 0.8s ease-out 0.2s both;
}

.funplaytop-legal-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--funplaytop-text);
  margin-bottom: 0.75rem;
  animation: funplaytop-slide-in-down 0.8s ease-out;
}

.funplaytop-legal-subtitle {
  font-size: 1rem;
  color: var(--funplaytop-text-muted);
  font-weight: 500;
  animation: funplaytop-fade-in-up 0.8s ease-out 0.3s both;
}

/* Legal Section */
.funplaytop-legal-section {
  padding-top: 3rem !important;
}

/* Legal Introduction Card */
.funplaytop-legal-intro-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 255, 0.08) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  animation: funplaytop-fade-in-up 0.6s ease-out both;
}

.funplaytop-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  color: var(--funplaytop-primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.funplaytop-legal-badge i {
  font-size: 0.95rem;
}

.funplaytop-legal-intro-card p {
  color: var(--funplaytop-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Legal Grid */
.funplaytop-legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Legal Cards */
.funplaytop-legal-card {
  background: var(--funplaytop-card-bg);
  border: 1px solid var(--funplaytop-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: funplaytop-fade-in-up 0.6s ease-out both;
}

.funplaytop-legal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--funplaytop-shadow-lg);
  border-color: var(--funplaytop-primary-light);
}

.funplaytop-legal-card-icon {
  width: 60px;
  height: 60px;
  background: var(--funplaytop-gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.funplaytop-legal-card:hover .funplaytop-legal-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.funplaytop-legal-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--funplaytop-text);
  margin-bottom: 1rem;
  text-align: left;
}

.funplaytop-legal-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--funplaytop-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.funplaytop-legal-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--funplaytop-text);
  margin-bottom: 0.5rem;
}

.funplaytop-legal-card p {
  color: var(--funplaytop-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.funplaytop-legal-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.funplaytop-legal-card li {
  color: var(--funplaytop-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.funplaytop-legal-card li strong {
  color: var(--funplaytop-text);
  font-weight: 600;
}

.funplaytop-legal-card a {
  color: var(--funplaytop-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.funplaytop-legal-card a:hover {
  color: var(--funplaytop-primary-dark);
  text-decoration: underline;
}

/* Warning Card */
.funplaytop-legal-card-warning {
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-color: rgba(255, 171, 0, 0.2);
}

.funplaytop-legal-card-warning .funplaytop-legal-card-icon {
  background: linear-gradient(135deg, #ffab00 0%, #ff8c00 100%);
}

/* Contact Card */
.funplaytop-legal-card-contact {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(0, 230, 118, 0.2);
}

/* Legal Highlight Box */
.funplaytop-legal-highlight {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid var(--funplaytop-primary);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.funplaytop-legal-highlight h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--funplaytop-text);
  margin-bottom: 0.75rem;
}

.funplaytop-legal-highlight h4 i {
  color: var(--funplaytop-primary);
}

.funplaytop-legal-highlight p {
  color: var(--funplaytop-text);
  margin-bottom: 0;
}

.funplaytop-legal-card-warning .funplaytop-legal-highlight {
  background: rgba(255, 171, 0, 0.08);
  border-left-color: #ffab00;
}

.funplaytop-legal-card-warning .funplaytop-legal-highlight h4 i {
  color: #ffab00;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .funplaytop-legal-hero {
    padding: 4rem 1.5rem 2rem;
  }

  .funplaytop-legal-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .funplaytop-legal-card {
    padding: 1.75rem;
  }

  .funplaytop-legal-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .funplaytop-legal-intro-card {
    padding: 1.5rem;
  }

  .funplaytop-legal-card {
    padding: 1.5rem;
  }

  .funplaytop-legal-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

