/* fungroupplay.com - Canada Free Social Gaming - Modern Blue/Purple Theme */
:root {
--fungroupplay-primary: #4f46e5;
--fungroupplay-primary-dark: #4338ca;
--fungroupplay-primary-light: #6366f1;
--fungroupplay-secondary: #10b981;
--fungroupplay-accent: #8b5cf6;
--fungroupplay-success: #059669;
--fungroupplay-warning: #f59e0b;
--fungroupplay-error: #ef4444;
--fungroupplay-gray-50: #fafafa;
--fungroupplay-gray-100: #f5f5f5;
--fungroupplay-gray-200: #e5e5e5;
--fungroupplay-gray-300: #d4d4d4;
--fungroupplay-gray-400: #a3a3a3;
--fungroupplay-gray-500: #737373;
--fungroupplay-gray-600: #525252;
--fungroupplay-gray-700: #404040;
--fungroupplay-gray-800: #262626;
--fungroupplay-gray-900: #171717;
--fungroupplay-white: #ffffff;
--fungroupplay-shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
--fungroupplay-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
--fungroupplay-shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
--fungroupplay-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
--fungroupplay-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
--fungroupplay-gradient-primary: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
--fungroupplay-gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
--fungroupplay-gradient-hero: linear-gradient(135deg, #4338ca 0%, #4f46e5 50%, #8b5cf6 100%);
--fungroupplay-border-radius: 12px;
--fungroupplay-border-radius-lg: 16px;
--fungroupplay-border-radius-xl: 24px;
--fungroupplay-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--fungroupplay-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--fungroupplay-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--fungroupplay-font-family); line-height: 1.6; color: var(--fungroupplay-gray-800); background-color: var(--fungroupplay-gray-50); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; margin-bottom: 1rem; color: var(--fungroupplay-gray-900); word-wrap: break-word; overflow-wrap: break-word; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--fungroupplay-gray-600); word-wrap: break-word; overflow-wrap: break-word; }
a { color: var(--fungroupplay-primary); text-decoration: none; transition: var(--fungroupplay-transition-fast); word-wrap: break-word; overflow-wrap: break-word; }
a:hover { color: var(--fungroupplay-primary-dark); }

.fungroupplay-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.fungroupplay-navbar { background: var(--fungroupplay-white); box-shadow: var(--fungroupplay-shadow); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--fungroupplay-transition); }
.fungroupplay-navbar-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.fungroupplay-navbar-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; color: var(--fungroupplay-primary); }
.fungroupplay-navbar-logo { height: 48px; width: auto; }
.fungroupplay-navbar-toggle { display: none; flex-direction: column; gap: 6px; background: var(--fungroupplay-primary); border: none; border-radius: var(--fungroupplay-border-radius); cursor: pointer; padding: 12px; transition: var(--fungroupplay-transition-fast); }
.fungroupplay-navbar-toggle:hover { background: var(--fungroupplay-primary-dark); }
.fungroupplay-navbar-toggle-bar { width: 30px; height: 3px; background: var(--fungroupplay-white); border-radius: 3px; transition: var(--fungroupplay-transition); }
.fungroupplay-navbar-menu { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin-bottom: 0; }
.fungroupplay-navbar-link { color: var(--fungroupplay-gray-700); font-weight: 600; padding: 0.75rem 1.25rem; border-radius: var(--fungroupplay-border-radius); position: relative; transition: var(--fungroupplay-transition); font-size: 1rem; }
.fungroupplay-navbar-link:hover { background: var(--fungroupplay-gray-100); color: var(--fungroupplay-primary); }
.fungroupplay-navbar-link.active { background: var(--fungroupplay-gradient-primary); color: var(--fungroupplay-white); }
.fungroupplay-navbar-cta { background: var(--fungroupplay-gradient-secondary); color: var(--fungroupplay-white); padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 700; transition: var(--fungroupplay-transition); box-shadow: var(--fungroupplay-shadow); border: none; font-size: 1rem; }
.fungroupplay-navbar-cta:hover { transform: translateY(-2px); box-shadow: var(--fungroupplay-shadow-md); color: var(--fungroupplay-white); }

@media (max-width: 768px) {
.fungroupplay-navbar-toggle { display: flex; }
.fungroupplay-navbar-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--fungroupplay-white); flex-direction: column; padding: 1.5rem; box-shadow: var(--fungroupplay-shadow-lg); transform: translateY(-150%); opacity: 0; visibility: hidden; transition: var(--fungroupplay-transition); z-index: 1000; gap: 0.75rem; }
.fungroupplay-navbar-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.fungroupplay-navbar-menu li { width: 100%; }
.fungroupplay-navbar-link { display: block; width: 100%; padding: 1rem; text-align: center; font-size: 1.125rem; }
.fungroupplay-navbar-link:hover { background: var(--fungroupplay-primary); color: var(--fungroupplay-white); }
.fungroupplay-navbar-cta { text-align: center; display: block; padding: 1rem 1.25rem; margin-top: 0.5rem; }
.fungroupplay-navbar-toggle.active .fungroupplay-navbar-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(9px, 9px); }
.fungroupplay-navbar-toggle.active .fungroupplay-navbar-toggle-bar:nth-child(2) { opacity: 0; }
.fungroupplay-navbar-toggle.active .fungroupplay-navbar-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
}

.fungroupplay-main { margin-top: 80px; min-height: calc(100vh - 80px); }
.fungroupplay-section { padding: 5rem 0; }
.fungroupplay-section-alt { background: var(--fungroupplay-white); }

.fungroupplay-hero { background: var(--fungroupplay-gradient-hero); color: var(--fungroupplay-white); padding: 6rem 0; position: relative; overflow: hidden; }
.fungroupplay-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%); }
.fungroupplay-hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.fungroupplay-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.2); padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.fungroupplay-hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; color: var(--fungroupplay-white); }
.fungroupplay-hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; color: var(--fungroupplay-white); opacity: 0.95; font-weight: 400; }
.fungroupplay-hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--fungroupplay-white); color: var(--fungroupplay-primary); padding: 1.125rem 2.25rem; border-radius: var(--fungroupplay-border-radius-lg); font-size: 1.125rem; font-weight: 700; transition: var(--fungroupplay-transition); box-shadow: var(--fungroupplay-shadow-lg); }
.fungroupplay-hero-cta:hover { transform: translateY(-3px); box-shadow: var(--fungroupplay-shadow-xl); color: var(--fungroupplay-primary); }

.fungroupplay-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.fungroupplay-feature-card { background: var(--fungroupplay-white); padding: 2.5rem 2rem; border-radius: var(--fungroupplay-border-radius-xl); text-align: center; box-shadow: var(--fungroupplay-shadow); transition: var(--fungroupplay-transition); border: 2px solid transparent; }
.fungroupplay-feature-card:hover { transform: translateY(-8px); box-shadow: var(--fungroupplay-shadow-lg); border-color: var(--fungroupplay-primary); }
.fungroupplay-feature-icon { width: 72px; height: 72px; background: var(--fungroupplay-gradient-primary); border-radius: var(--fungroupplay-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; color: var(--fungroupplay-white); box-shadow: var(--fungroupplay-shadow); }
.fungroupplay-feature-title { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--fungroupplay-gray-900); }
.fungroupplay-feature-desc { color: var(--fungroupplay-gray-600); line-height: 1.7; font-size: 1rem; }

.fungroupplay-games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.fungroupplay-game-card { background: var(--fungroupplay-white); border-radius: var(--fungroupplay-border-radius-xl); overflow: hidden; box-shadow: var(--fungroupplay-shadow); transition: var(--fungroupplay-transition); position: relative; border: 2px solid transparent; }
.fungroupplay-game-card:hover { transform: translateY(-8px); box-shadow: var(--fungroupplay-shadow-lg); border-color: var(--fungroupplay-primary); }
.fungroupplay-game-card.featured { border-color: var(--fungroupplay-secondary); }
.fungroupplay-game-badge { position: absolute; top: 1rem; right: 1rem; background: var(--fungroupplay-secondary); color: var(--fungroupplay-white); padding: 0.5rem 1.125rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; z-index: 1; text-transform: uppercase; box-shadow: var(--fungroupplay-shadow); }
.fungroupplay-game-image { width: 100%; height: 220px; overflow: hidden; position: relative; background: var(--fungroupplay-gray-100); }
.fungroupplay-game-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--fungroupplay-transition); }
.fungroupplay-game-card:hover .fungroupplay-game-image img { transform: scale(1.1); }
.fungroupplay-game-content { padding: 1.5rem; }
.fungroupplay-game-title { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--fungroupplay-gray-900); }
.fungroupplay-game-desc { color: var(--fungroupplay-gray-600); margin-bottom: 1.25rem; line-height: 1.6; font-size: 1rem; }
.fungroupplay-game-stats { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; font-size: 0.875rem; color: var(--fungroupplay-gray-500); }
.fungroupplay-game-play { width: 100%; background: var(--fungroupplay-gradient-primary); color: var(--fungroupplay-white); border: none; padding: 0.875rem 1.5rem; border-radius: var(--fungroupplay-border-radius); font-weight: 700; cursor: pointer; transition: var(--fungroupplay-transition); font-size: 1rem; }
.fungroupplay-game-play:hover { transform: translateY(-2px); box-shadow: var(--fungroupplay-shadow-md); }

.fungroupplay-btn { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.875rem 1.75rem; border-radius: var(--fungroupplay-border-radius-lg); font-weight: 700; transition: var(--fungroupplay-transition); cursor: pointer; border: none; font-size: 1rem; }
.fungroupplay-btn-primary { background: var(--fungroupplay-gradient-primary); color: var(--fungroupplay-white); box-shadow: var(--fungroupplay-shadow); }
.fungroupplay-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--fungroupplay-shadow-md); color: var(--fungroupplay-white); }
.fungroupplay-btn-secondary { background: var(--fungroupplay-white); color: var(--fungroupplay-primary); border: 2px solid var(--fungroupplay-primary); }
.fungroupplay-btn-secondary:hover { background: var(--fungroupplay-primary); color: var(--fungroupplay-white); }

.fungroupplay-footer { background: var(--fungroupplay-gray-900); color: var(--fungroupplay-white); padding: 3.5rem 0 1.5rem; }
.fungroupplay-footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.fungroupplay-footer-section h3 { color: var(--fungroupplay-white); margin-bottom: 1.25rem; font-size: 1.125rem; }
.fungroupplay-footer-section p { margin-bottom: 0.75rem; color: var(--fungroupplay-gray-300); font-size: 0.9375rem; }
.fungroupplay-footer-section a { color: var(--fungroupplay-gray-200); transition: var(--fungroupplay-transition-fast); }
.fungroupplay-footer-section a:hover { color: var(--fungroupplay-white); text-decoration: underline; }
.fungroupplay-disclaimer { background: var(--fungroupplay-gray-800); padding: 2rem; border-radius: var(--fungroupplay-border-radius-lg); margin-bottom: 2rem; border-left: 4px solid var(--fungroupplay-secondary); }
.fungroupplay-disclaimer p { margin-bottom: 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: var(--fungroupplay-gray-200); }
.fungroupplay-disclaimer a { color: var(--fungroupplay-secondary); font-weight: 700; }
.fungroupplay-footer-bottom { border-top: 1px solid var(--fungroupplay-gray-700); padding-top: 1.75rem; text-align: center; font-size: 0.875rem; color: var(--fungroupplay-gray-300); }

.fungroupplay-cookie-popup { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; max-width: 550px; background: var(--fungroupplay-white); padding: 2rem; border-radius: var(--fungroupplay-border-radius-xl); box-shadow: var(--fungroupplay-shadow-xl); z-index: 9999; transform: translateY(200px); opacity: 0; transition: var(--fungroupplay-transition); border: 2px solid var(--fungroupplay-primary); }
.fungroupplay-cookie-popup.show { transform: translateY(0); opacity: 1; }
.fungroupplay-cookie-content { margin-bottom: 1.25rem; }
.fungroupplay-cookie-content h4 { margin-bottom: 0.75rem; color: var(--fungroupplay-gray-900); font-size: 1.125rem; }
.fungroupplay-cookie-content p { margin-bottom: 0.5rem; color: var(--fungroupplay-gray-600); font-size: 0.9375rem; line-height: 1.6; }
.fungroupplay-cookie-actions { display: flex; gap: 1rem; }
.fungroupplay-cookie-accept { background: var(--fungroupplay-gradient-primary); color: var(--fungroupplay-white); padding: 0.875rem 1.5rem; border-radius: var(--fungroupplay-border-radius); font-weight: 700; border: none; cursor: pointer; transition: var(--fungroupplay-transition); flex: 1; }
.fungroupplay-cookie-accept:hover { transform: translateY(-2px); box-shadow: var(--fungroupplay-shadow-md); }
.fungroupplay-cookie-link { color: var(--fungroupplay-primary); font-weight: 700; font-size: 0.9375rem; }

.fungroupplay-form-group { margin-bottom: 1.5rem; }
.fungroupplay-form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--fungroupplay-gray-700); font-size: 1rem; }
.fungroupplay-form-control { width: 100%; padding: 0.875rem 1.125rem; border: 2px solid var(--fungroupplay-gray-300); border-radius: var(--fungroupplay-border-radius); font-size: 1rem; transition: var(--fungroupplay-transition-fast); background: var(--fungroupplay-white); font-family: var(--fungroupplay-font-family); }
.fungroupplay-form-control:focus { outline: none; border-color: var(--fungroupplay-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.fungroupplay-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fungroupplay-form-control.error { border-color: var(--fungroupplay-error); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

.fungroupplay-alert { padding: 1.125rem 1.5rem; border-radius: var(--fungroupplay-border-radius-lg); margin-bottom: 1.25rem; border-left: 4px solid; font-size: 1rem; }
.fungroupplay-alert-info { background: #ede9fe; border-color: var(--fungroupplay-primary); color: #4c1d95; }
.fungroupplay-alert-success { background: #d1fae5; border-color: var(--fungroupplay-success); color: #065f46; }
.fungroupplay-alert-error { background: #fee2e2; border-color: var(--fungroupplay-error); color: #991b1b; }

.fungroupplay-contact-hero, .fungroupplay-privacy-hero, .fungroupplay-terms-hero, .fungroupplay-cookies-hero, .fungroupplay-about-hero, .fungroupplay-games-hero { background: var(--fungroupplay-gradient-hero); color: var(--fungroupplay-white); text-align: center; padding: 5rem 0; }
.fungroupplay-contact-hero-icon, .fungroupplay-privacy-hero-icon, .fungroupplay-terms-hero-icon, .fungroupplay-cookies-hero-icon, .fungroupplay-about-hero-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: var(--fungroupplay-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; backdrop-filter: blur(10px); }
.fungroupplay-contact-hero h1, .fungroupplay-privacy-hero h1, .fungroupplay-terms-hero h1, .fungroupplay-cookies-hero h1, .fungroupplay-about-hero h1, .fungroupplay-games-hero-content h1 { font-size: 2.75rem; margin-bottom: 1rem; color: var(--fungroupplay-white); }
.fungroupplay-contact-hero-subtitle, .fungroupplay-privacy-hero-subtitle, .fungroupplay-terms-hero-subtitle, .fungroupplay-cookies-hero-subtitle, .fungroupplay-about-hero-subtitle, .fungroupplay-games-hero-subtitle { font-size: 1.125rem; color: var(--fungroupplay-white); opacity: 0.95; font-weight: 400; }
.fungroupplay-contact-hero-date, .fungroupplay-privacy-hero-date, .fungroupplay-terms-hero-date, .fungroupplay-cookies-hero-date { font-size: 0.9375rem; color: var(--fungroupplay-white); opacity: 0.85; margin-top: 0.5rem; }

.fungroupplay-contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.fungroupplay-contact-info-card, .fungroupplay-contact-form-card { background: var(--fungroupplay-white); padding: 2.5rem; border-radius: var(--fungroupplay-border-radius-xl); box-shadow: var(--fungroupplay-shadow); border-top: 4px solid var(--fungroupplay-primary); }
.fungroupplay-contact-info-card h3, .fungroupplay-contact-form-card h3 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; color: var(--fungroupplay-gray-900); }
.fungroupplay-contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.fungroupplay-contact-detail-item { display: flex; gap: 1.25rem; }
.fungroupplay-contact-detail-icon { width: 52px; height: 52px; background: var(--fungroupplay-gradient-primary); border-radius: var(--fungroupplay-border-radius); display: flex; align-items: center; justify-content: center; color: var(--fungroupplay-white); font-size: 1.25rem; flex-shrink: 0; }
.fungroupplay-contact-detail-content h4 { margin-bottom: 0.375rem; color: var(--fungroupplay-gray-900); font-size: 1.0625rem; }
.fungroupplay-contact-detail-content p { margin-bottom: 0; color: var(--fungroupplay-gray-600); font-size: 1rem; }
.fungroupplay-form-description { color: var(--fungroupplay-gray-600); margin-bottom: 1.5rem; font-size: 1rem; }

.fungroupplay-privacy-content, .fungroupplay-terms-content, .fungroupplay-cookies-content, .fungroupplay-about-content { max-width: 850px; margin: 0 auto; }
.fungroupplay-privacy-section, .fungroupplay-terms-section, .fungroupplay-cookies-section, .fungroupplay-about-section { margin-bottom: 2.5rem; padding: 2.5rem; background: var(--fungroupplay-white); border-radius: var(--fungroupplay-border-radius-xl); box-shadow: var(--fungroupplay-shadow); border-left: 4px solid var(--fungroupplay-primary); }
.fungroupplay-privacy-section h2, .fungroupplay-terms-section h2, .fungroupplay-cookies-section h2, .fungroupplay-about-section h2 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; color: var(--fungroupplay-gray-900); font-size: 1.5rem; }
.fungroupplay-privacy-section h3, .fungroupplay-terms-section h3, .fungroupplay-cookies-section h3 { color: var(--fungroupplay-gray-800); margin: 1.5rem 0 1rem 0; font-size: 1.125rem; }
.fungroupplay-privacy-section p, .fungroupplay-terms-section p, .fungroupplay-cookies-section p, .fungroupplay-about-section p { margin-bottom: 1rem; line-height: 1.7; color: var(--fungroupplay-gray-700); }
.fungroupplay-privacy-section ul, .fungroupplay-terms-section ul, .fungroupplay-cookies-section ul, .fungroupplay-about-section ul { margin-bottom: 0.75rem; padding-left: 1.5rem; }
.fungroupplay-privacy-section li, .fungroupplay-terms-section li, .fungroupplay-cookies-section li, .fungroupplay-about-section li { margin-bottom: 0.625rem; line-height: 1.65; color: var(--fungroupplay-gray-700); }
.fungroupplay-privacy-section a, .fungroupplay-terms-section a, .fungroupplay-cookies-section a { color: var(--fungroupplay-primary); font-weight: 700; }
.fungroupplay-privacy-section a:hover, .fungroupplay-terms-section a:hover, .fungroupplay-cookies-section a:hover { text-decoration: underline; }

.fungroupplay-games-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; }
.fungroupplay-stat-item { text-align: center; }
.fungroupplay-stat-number { display: block; font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.fungroupplay-stat-label { font-size: 0.9375rem; opacity: 0.9; }

.fungroupplay-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.fungroupplay-cta-content h2 { margin-bottom: 1rem; }
.fungroupplay-cta-actions { display: flex; justify-content: center; gap: 1.25rem; margin-top: 2rem; flex-wrap: wrap; }

.fungroupplay-disclaimer-section { background: var(--fungroupplay-gray-100); }
.fungroupplay-disclaimer-content .fungroupplay-alert ul { margin-top: 0.75rem; }

.fungroupplay-text-center { text-align: center; }
.fungroupplay-mb-5 { margin-bottom: 3rem; }
.fungroupplay-mt-5 { margin-top: 3rem; }

.fungroupplay-cookie-management { margin-top: 2rem; }
.fungroupplay-cookie-option { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--fungroupplay-gray-50); border-radius: var(--fungroupplay-border-radius); margin-bottom: 1rem; border: 2px solid var(--fungroupplay-gray-200); }
.fungroupplay-cookie-info h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.fungroupplay-cookie-info p { margin-bottom: 0; font-size: 0.875rem; }
.fungroupplay-cookie-toggle { display: flex; align-items: center; gap: 0.625rem; }
.fungroupplay-cookie-toggle input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; }
.fungroupplay-cookie-toggle label { margin: 0; font-size: 0.9375rem; cursor: pointer; }

@media (max-width: 768px) {
.fungroupplay-hero-title { font-size: 2.25rem; }
.fungroupplay-hero-subtitle { font-size: 1.125rem; }
.fungroupplay-features-grid { grid-template-columns: 1fr; }
.fungroupplay-games-grid { grid-template-columns: 1fr; }
.fungroupplay-contact-content { grid-template-columns: 1fr; gap: 2rem; }
.fungroupplay-form-row { grid-template-columns: 1fr; }
.fungroupplay-cookie-popup { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.5rem; }
.fungroupplay-cookie-actions { flex-direction: column; }
.fungroupplay-games-stats { flex-direction: column; gap: 2rem; }
.fungroupplay-privacy-section, .fungroupplay-terms-section, .fungroupplay-cookies-section, .fungroupplay-about-section { padding: 1.75rem; }
.fungroupplay-cta-actions { flex-direction: column; width: 100%; }
.fungroupplay-cta-actions a, .fungroupplay-cta-actions button { width: 100%; justify-content: center; }
.fungroupplay-cookie-option { flex-direction: column; align-items: flex-start; gap: 1rem; }
h1 { font-size: 2rem; } h2 { font-size: 1.65rem; } h3 { font-size: 1.25rem; }
}

.fungroupplay-message { margin: 1.5rem 0; }
.fungroupplay-about-subtitle { max-width: 750px; margin: 1.25rem auto 3rem; }
.fungroupplay-message-icon { display: flex; align-items: center; gap: 0.75rem; }
@keyframes fungroupplay-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.fungroupplay-btn-loading { display: inline-flex; align-items: center; gap: 0.625rem; }
.fungroupplay-btn-loading .fa-spin { animation: fungroupplay-spin 1s linear infinite; }

