/* gamebonding.org - Finland Free Social Gaming - Warm Orange/Amber Theme */
:root {
--gamebonding-primary: #f97316;
--gamebonding-primary-dark: #ea580c;
--gamebonding-primary-light: #fb923c;
--gamebonding-secondary: #f59e0b;
--gamebonding-accent: #eab308;
--gamebonding-success: #22c55e;
--gamebonding-warning: #fbbf24;
--gamebonding-error: #f87171;
--gamebonding-gray-50: #fafaf9;
--gamebonding-gray-100: #f5f5f4;
--gamebonding-gray-200: #e7e5e4;
--gamebonding-gray-300: #d6d3d1;
--gamebonding-gray-400: #a8a29e;
--gamebonding-gray-500: #78716c;
--gamebonding-gray-600: #57534e;
--gamebonding-gray-700: #44403c;
--gamebonding-gray-800: #292524;
--gamebonding-gray-900: #1c1917;
--gamebonding-white: #ffffff;
--gamebonding-shadow-sm: 0 2px 4px rgba(249,115,22,0.1);
--gamebonding-shadow: 0 4px 8px rgba(249,115,22,0.12);
--gamebonding-shadow-md: 0 8px 16px rgba(249,115,22,0.15);
--gamebonding-shadow-lg: 0 16px 32px rgba(249,115,22,0.2);
--gamebonding-shadow-xl: 0 24px 48px rgba(249,115,22,0.25);
--gamebonding-gradient-primary: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
--gamebonding-gradient-hero: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(251,146,60,0.3) 0%, transparent 70%), linear-gradient(180deg, #ea580c 0%, #f97316 50%, #f59e0b 100%);
--gamebonding-border-radius: 16px;
--gamebonding-border-radius-lg: 20px;
--gamebonding-border-radius-xl: 28px;
--gamebonding-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
--gamebonding-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
--gamebonding-transition-fast: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--gamebonding-font-family); line-height: 1.75; color: var(--gamebonding-gray-800); background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.25; margin-bottom: 1.25rem; color: var(--gamebonding-gray-900); word-wrap: break-word; overflow-wrap: break-word; }
h1 { font-size: 3rem; letter-spacing: -0.02em; } h2 { font-size: 2.25rem; letter-spacing: -0.01em; } h3 { font-size: 1.75rem; }
p { margin-bottom: 1.25rem; color: var(--gamebonding-gray-700); word-wrap: break-word; overflow-wrap: break-word; }
a { color: var(--gamebonding-primary); text-decoration: none; transition: var(--gamebonding-transition-fast); word-wrap: break-word; overflow-wrap: break-word; font-weight: 600; }
a:hover { color: var(--gamebonding-primary-dark); }

.gamebonding-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.gamebonding-navbar { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(249,115,22,0.08); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--gamebonding-transition); border-bottom: 4px solid var(--gamebonding-primary); }
.gamebonding-navbar-container { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.gamebonding-navbar-brand { display: flex; align-items: center; gap: 1rem; font-size: 1.65rem; font-weight: 900; background: var(--gamebonding-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; }
.gamebonding-navbar-logo { height: 50px; width: auto; filter: drop-shadow(0 2px 4px rgba(249,115,22,0.2)); }
.gamebonding-navbar-toggle { display: none; flex-direction: column; gap: 7px; background: var(--gamebonding-primary); border: none; border-radius: var(--gamebonding-border-radius); cursor: pointer; padding: 14px; transition: var(--gamebonding-transition-fast); box-shadow: var(--gamebonding-shadow); }
.gamebonding-navbar-toggle:hover { background: var(--gamebonding-primary-dark); transform: scale(1.05); }
.gamebonding-navbar-toggle-bar { width: 32px; height: 4px; background: var(--gamebonding-white); border-radius: 4px; transition: var(--gamebonding-transition); }
.gamebonding-navbar-menu { display: flex; align-items: center; gap: 0.75rem; list-style: none; margin-bottom: 0; }
.gamebonding-navbar-link { color: var(--gamebonding-gray-700); font-weight: 600; padding: 0.85rem 1.4rem; border-radius: var(--gamebonding-border-radius); position: relative; transition: var(--gamebonding-transition); font-size: 1rem; }
.gamebonding-navbar-link:hover { background: var(--gamebonding-gray-100); color: var(--gamebonding-primary); transform: translateY(-2px); }
.gamebonding-navbar-link.active { background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); box-shadow: var(--gamebonding-shadow); }
.gamebonding-navbar-cta { background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 700; transition: var(--gamebonding-transition); box-shadow: var(--gamebonding-shadow-md); border: none; font-size: 1rem; }
.gamebonding-navbar-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--gamebonding-shadow-lg); color: var(--gamebonding-white); }

@media (max-width: 768px) {
.gamebonding-navbar-toggle { display: flex; }
.gamebonding-navbar-menu { position: fixed; top: 78px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); flex-direction: column; padding: 2rem 2rem; box-shadow: var(--gamebonding-shadow-lg); transform: translateY(-140%); opacity: 0; visibility: hidden; transition: var(--gamebonding-transition); z-index: 1000; gap: 1rem; }
.gamebonding-navbar-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.gamebonding-navbar-menu li { width: 100%; }
.gamebonding-navbar-link { display: block; width: 100%; padding: 1.15rem 1.4rem; text-align: center; font-size: 1.1rem; }
.gamebonding-navbar-link:hover { background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); }
.gamebonding-navbar-cta { text-align: center; display: block; padding: 1.15rem 1.4rem; margin-top: 0.75rem; }
.gamebonding-navbar-toggle.active .gamebonding-navbar-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.gamebonding-navbar-toggle.active .gamebonding-navbar-toggle-bar:nth-child(2) { opacity: 0; }
.gamebonding-navbar-toggle.active .gamebonding-navbar-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(9px, -9px); }
.gamebonding-container { padding: 0 1.5rem; }
}

.gamebonding-main { margin-top: 78px; min-height: calc(100vh - 78px); }
.gamebonding-section { padding: 6rem 0; }
.gamebonding-section-alt { background: var(--gamebonding-white); position: relative; }

.gamebonding-hero { background: var(--gamebonding-gradient-hero); color: var(--gamebonding-white); padding: 7rem 0 6rem; position: relative; overflow: hidden; }
.gamebonding-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 80%; height: 180%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); transform: rotate(25deg); }
.gamebonding-hero::after { content: ''; position: absolute; bottom: -20%; left: -15%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(234,179,8,0.15) 0%, transparent 60%); transform: rotate(-15deg); }
.gamebonding-hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.gamebonding-hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.25); padding: 0.75rem 1.75rem; border-radius: 50px; font-size: 0.95rem; font-weight: 700; margin-bottom: 2rem; backdrop-filter: blur(15px); border: 2px solid rgba(255,255,255,0.3); letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.gamebonding-hero-title { font-size: 3.75rem; font-weight: 900; margin-bottom: 1.75rem; line-height: 1.1; color: var(--gamebonding-white); text-shadow: 0 4px 16px rgba(0,0,0,0.3); letter-spacing: -0.02em; }
.gamebonding-hero-subtitle { font-size: 1.35rem; margin-bottom: 2.5rem; color: var(--gamebonding-white); opacity: 0.95; font-weight: 400; line-height: 1.6; }
.gamebonding-hero-cta { display: inline-flex; align-items: center; gap: 0.85rem; background: var(--gamebonding-white); color: var(--gamebonding-primary); padding: 1.25rem 2.75rem; border-radius: var(--gamebonding-border-radius-lg); font-size: 1.15rem; font-weight: 800; transition: var(--gamebonding-transition); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.gamebonding-hero-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,0.3); color: var(--gamebonding-primary); }

.gamebonding-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.gamebonding-feature-card { background: var(--gamebonding-white); padding: 2.75rem 2rem; border-radius: var(--gamebonding-border-radius-xl); text-align: center; box-shadow: var(--gamebonding-shadow); transition: var(--gamebonding-transition); border: 3px solid transparent; position: relative; overflow: hidden; }
.gamebonding-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gamebonding-gradient-primary); }
.gamebonding-feature-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--gamebonding-shadow-lg); border-color: var(--gamebonding-primary); }
.gamebonding-feature-icon { width: 80px; height: 80px; background: var(--gamebonding-gradient-primary); border-radius: var(--gamebonding-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; font-size: 2rem; color: var(--gamebonding-white); box-shadow: var(--gamebonding-shadow-md); transition: var(--gamebonding-transition); }
.gamebonding-feature-card:hover .gamebonding-feature-icon { transform: rotate(5deg) scale(1.1); }
.gamebonding-feature-title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--gamebonding-gray-900); }
.gamebonding-feature-desc { color: var(--gamebonding-gray-600); line-height: 1.8; font-size: 1rem; }

.gamebonding-games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; margin-top: 3rem; }
.gamebonding-game-card { background: var(--gamebonding-white); border-radius: var(--gamebonding-border-radius-xl); overflow: hidden; box-shadow: var(--gamebonding-shadow); transition: var(--gamebonding-transition); position: relative; border: 3px solid transparent; }
.gamebonding-game-card:hover { transform: translateY(-10px) rotate(1deg); box-shadow: var(--gamebonding-shadow-lg); border-color: var(--gamebonding-primary); }
.gamebonding-game-card.featured { border-color: var(--gamebonding-secondary); box-shadow: var(--gamebonding-shadow-md); }
.gamebonding-game-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--gamebonding-gradient-primary); z-index: 1; }
.gamebonding-game-badge { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); padding: 0.6rem 1.4rem; border-radius: 50px; font-size: 0.85rem; font-weight: 800; z-index: 2; text-transform: uppercase; box-shadow: var(--gamebonding-shadow-md); letter-spacing: 0.5px; }
.gamebonding-game-image { width: 100%; height: 240px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--gamebonding-gray-100) 0%, var(--gamebonding-gray-200) 100%); }
.gamebonding-game-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--gamebonding-transition); }
.gamebonding-game-card:hover .gamebonding-game-image img { transform: scale(1.15) rotate(2deg); }
.gamebonding-game-content { padding: 1.85rem; }
.gamebonding-game-title { font-size: 1.4rem; margin-bottom: 0.85rem; color: var(--gamebonding-gray-900); }
.gamebonding-game-desc { color: var(--gamebonding-gray-600); margin-bottom: 1.5rem; line-height: 1.7; font-size: 1rem; }
.gamebonding-game-stats { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--gamebonding-gray-500); font-weight: 600; }
.gamebonding-game-play { width: 100%; background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); border: none; padding: 1rem 1.6rem; border-radius: var(--gamebonding-border-radius); font-weight: 800; cursor: pointer; transition: var(--gamebonding-transition); font-size: 1.05rem; box-shadow: var(--gamebonding-shadow); }
.gamebonding-game-play:hover { transform: translateY(-3px); box-shadow: var(--gamebonding-shadow-md); }

.gamebonding-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.85rem; border-radius: var(--gamebonding-border-radius-lg); font-weight: 700; transition: var(--gamebonding-transition); cursor: pointer; border: none; font-size: 1.1rem; }
.gamebonding-btn-primary { background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); box-shadow: var(--gamebonding-shadow-md); }
.gamebonding-btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--gamebonding-shadow-lg); color: var(--gamebonding-white); }
.gamebonding-btn-secondary { background: var(--gamebonding-white); color: var(--gamebonding-primary); border: 3px solid var(--gamebonding-primary); }
.gamebonding-btn-secondary:hover { background: var(--gamebonding-gradient-primary); color: var(--gamebonding-white); transform: translateY(-3px); }

.gamebonding-footer { background: linear-gradient(180deg, var(--gamebonding-gray-900) 0%, var(--gamebonding-gray-800) 100%); color: var(--gamebonding-white); padding: 4rem 0 2rem; border-top: 5px solid var(--gamebonding-primary); position: relative; }
.gamebonding-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gamebonding-primary), transparent); }
.gamebonding-footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.gamebonding-footer-section h3 { color: var(--gamebonding-white); margin-bottom: 1.5rem; font-size: 1.3rem; font-weight: 800; }
.gamebonding-footer-section p { margin-bottom: 0.85rem; color: var(--gamebonding-gray-300); font-size: 0.98rem; line-height: 1.7; }
.gamebonding-footer-section a { color: var(--gamebonding-gray-200); transition: var(--gamebonding-transition-fast); font-weight: 500; }
.gamebonding-footer-section a:hover { color: var(--gamebonding-primary-light); text-decoration: underline; }
.gamebonding-disclaimer { background: linear-gradient(135deg, var(--gamebonding-gray-800) 0%, var(--gamebonding-gray-700) 100%); padding: 2rem; border-radius: var(--gamebonding-border-radius-lg); margin-bottom: 2rem; border-left: 5px solid var(--gamebonding-accent); box-shadow: var(--gamebonding-shadow); }
.gamebonding-disclaimer p { margin-bottom: 0.85rem; font-size: 0.95rem; line-height: 1.7; color: var(--gamebonding-gray-200); }
.gamebonding-disclaimer a { color: var(--gamebonding-secondary); font-weight: 700; }
.gamebonding-footer-bottom { border-top: 2px solid var(--gamebonding-gray-700); padding-top: 2rem; text-align: center; font-size: 0.92rem; color: var(--gamebonding-gray-300); }

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

.gamebonding-form-group { margin-bottom: 2rem; }
.gamebonding-form-label { display: block; margin-bottom: 0.75rem; font-weight: 700; color: var(--gamebonding-gray-700); font-size: 1rem; }
.gamebonding-form-control { width: 100%; padding: 1rem 1.25rem; border: 3px solid var(--gamebonding-gray-300); border-radius: var(--gamebonding-border-radius); font-size: 1rem; transition: var(--gamebonding-transition-fast); background: var(--gamebonding-white); font-family: var(--gamebonding-font-family); }
.gamebonding-form-control:focus { outline: none; border-color: var(--gamebonding-primary); box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
.gamebonding-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.gamebonding-form-control.error { border-color: var(--gamebonding-error); box-shadow: 0 0 0 4px rgba(248,113,113,0.15); }

.gamebonding-alert { padding: 1.25rem 1.75rem; border-radius: var(--gamebonding-border-radius-lg); margin-bottom: 1.5rem; border-left: 5px solid; font-size: 1rem; }
.gamebonding-alert-info { background: #fff7ed; border-color: var(--gamebonding-primary); color: #9a3412; }
.gamebonding-alert-success { background: #f0fdf4; border-color: var(--gamebonding-success); color: #166534; }
.gamebonding-alert-error { background: #fef2f2; border-color: var(--gamebonding-error); color: #991b1b; }

.gamebonding-contact-hero, .gamebonding-privacy-hero, .gamebonding-terms-hero, .gamebonding-cookies-hero, .gamebonding-about-hero, .gamebonding-games-hero { background: var(--gamebonding-gradient-hero); color: var(--gamebonding-white); text-align: center; padding: 6rem 0; position: relative; overflow: hidden; }
.gamebonding-contact-hero::before, .gamebonding-privacy-hero::before, .gamebonding-terms-hero::before, .gamebonding-cookies-hero::before, .gamebonding-about-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 50%; height: 150%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); transform: rotate(20deg); }
.gamebonding-contact-hero-icon, .gamebonding-privacy-hero-icon, .gamebonding-terms-hero-icon, .gamebonding-cookies-hero-icon, .gamebonding-about-hero-icon { width: 90px; height: 90px; background: rgba(255,255,255,0.25); border-radius: var(--gamebonding-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; font-size: 2.25rem; backdrop-filter: blur(15px); border: 3px solid rgba(255,255,255,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.gamebonding-contact-hero h1, .gamebonding-privacy-hero h1, .gamebonding-terms-hero h1, .gamebonding-cookies-hero h1, .gamebonding-about-hero h1, .gamebonding-games-hero-content h1 { font-size: 2.75rem; margin-bottom: 1.25rem; color: var(--gamebonding-white); text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.gamebonding-contact-hero-subtitle, .gamebonding-privacy-hero-subtitle, .gamebonding-terms-hero-subtitle, .gamebonding-cookies-hero-subtitle, .gamebonding-about-hero-subtitle, .gamebonding-games-hero-subtitle { font-size: 1.2rem; color: var(--gamebonding-white); opacity: 0.95; font-weight: 400; }
.gamebonding-contact-hero-date, .gamebonding-privacy-hero-date, .gamebonding-terms-hero-date, .gamebonding-cookies-hero-date { font-size: 1rem; color: var(--gamebonding-white); opacity: 0.85; margin-top: 0.75rem; }

.gamebonding-contact-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; margin-top: 3rem; }
.gamebonding-contact-info-card, .gamebonding-contact-form-card { background: var(--gamebonding-white); padding: 2.75rem; border-radius: var(--gamebonding-border-radius-xl); box-shadow: var(--gamebonding-shadow-md); border-top: 5px solid var(--gamebonding-secondary); }
.gamebonding-contact-info-card::before, .gamebonding-contact-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gamebonding-gradient-primary); }
.gamebonding-contact-info-card h3, .gamebonding-contact-form-card h3 { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.75rem; color: var(--gamebonding-gray-900); font-size: 1.5rem; }
.gamebonding-contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.gamebonding-contact-detail-item { display: flex; gap: 1.5rem; }
.gamebonding-contact-detail-icon { width: 60px; height: 60px; background: var(--gamebonding-gradient-primary); border-radius: var(--gamebonding-border-radius-lg); display: flex; align-items: center; justify-content: center; color: var(--gamebonding-white); font-size: 1.5rem; flex-shrink: 0; box-shadow: var(--gamebonding-shadow); }
.gamebonding-contact-detail-content h4 { margin-bottom: 0.5rem; color: var(--gamebonding-gray-900); font-size: 1.1rem; font-weight: 800; }
.gamebonding-contact-detail-content p { margin-bottom: 0; color: var(--gamebonding-gray-600); font-size: 1rem; }
.gamebonding-form-description { color: var(--gamebonding-gray-600); margin-bottom: 1.75rem; font-size: 1rem; line-height: 1.7; }

.gamebonding-privacy-content, .gamebonding-terms-content, .gamebonding-cookies-content, .gamebonding-about-content { max-width: 900px; margin: 0 auto; }
.gamebonding-privacy-section, .gamebonding-terms-section, .gamebonding-cookies-section, .gamebonding-about-section { margin-bottom: 2.5rem; padding: 2.75rem; background: var(--gamebonding-white); border-radius: var(--gamebonding-border-radius-xl); box-shadow: var(--gamebonding-shadow); border-left: 5px solid var(--gamebonding-primary); position: relative; }

.gamebonding-privacy-section h2, .gamebonding-terms-section h2, .gamebonding-cookies-section h2, .gamebonding-about-section h2 { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem; color: var(--gamebonding-gray-900); font-size: 1.6rem; }
.gamebonding-privacy-section h3, .gamebonding-terms-section h3, .gamebonding-cookies-section h3 { color: var(--gamebonding-gray-800); margin: 1.75rem 0 1.25rem 0; font-size: 1.25rem; font-weight: 800; }
.gamebonding-privacy-section p, .gamebonding-terms-section p, .gamebonding-cookies-section p, .gamebonding-about-section p { margin-bottom: 1rem; line-height: 1.8; color: var(--gamebonding-gray-700); font-size: 1.05rem; }
.gamebonding-privacy-section ul, .gamebonding-terms-section ul, .gamebonding-cookies-section ul, .gamebonding-about-section ul { margin-bottom: 0.85rem; padding-left: 1.75rem; }
.gamebonding-privacy-section li, .gamebonding-terms-section li, .gamebonding-cookies-section li, .gamebonding-about-section li { margin-bottom: 0.75rem; line-height: 1.7; color: var(--gamebonding-gray-700); font-size: 1.05rem; }
.gamebonding-privacy-section a, .gamebonding-terms-section a, .gamebonding-cookies-section a { color: var(--gamebonding-primary); font-weight: 700; }
.gamebonding-privacy-section a:hover, .gamebonding-terms-section a:hover, .gamebonding-cookies-section a:hover { text-decoration: underline; }

.gamebonding-games-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 2.5rem; }
.gamebonding-stat-item { text-align: center; }
.gamebonding-stat-number { display: block; font-size: 2.5rem; font-weight: 900; margin-bottom: 0.6rem; background: var(--gamebonding-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gamebonding-stat-label { font-size: 1rem; opacity: 0.9; font-weight: 600; }

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

.gamebonding-cta-content { text-align: center; max-width: 800px; margin: 0 auto; padding: 3rem; background: var(--gamebonding-white); border-radius: var(--gamebonding-border-radius-xl); box-shadow: var(--gamebonding-shadow-md); }
.gamebonding-cta-content h2 { margin-bottom: 1.25rem; }
.gamebonding-cta-content p { margin-bottom: 2.5rem; font-size: 1.15rem; }
.gamebonding-cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

.gamebonding-disclaimer-section { background: linear-gradient(135deg, var(--gamebonding-gray-100) 0%, var(--gamebonding-white) 100%); }

@media (max-width: 768px) {
.gamebonding-hero-title { font-size: 2.5rem; }
.gamebonding-hero-subtitle { font-size: 1.15rem; }
.gamebonding-features-grid { grid-template-columns: 1fr; gap: 2rem; }
.gamebonding-games-grid { grid-template-columns: 1fr; gap: 1.75rem; }
.gamebonding-contact-content { grid-template-columns: 1fr; gap: 2rem; }
.gamebonding-form-row { grid-template-columns: 1fr; }
.gamebonding-cookie-popup { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; padding: 1.75rem; }
.gamebonding-cookie-actions { flex-direction: column; }
.gamebonding-games-stats { flex-direction: column; gap: 2.5rem; }
.gamebonding-privacy-section, .gamebonding-terms-section, .gamebonding-cookies-section, .gamebonding-about-section { padding: 2rem; }
h1 { font-size: 2.25rem; } h2 { font-size: 1.85rem; } h3 { font-size: 1.5rem; }
.gamebonding-cta-actions { flex-direction: column; }
.gamebonding-cta-content { padding: 2rem; }
.gamebonding-privacy-section h2, .gamebonding-terms-section h2, .gamebonding-cookies-section h2 { font-size: 1.35rem; word-break: break-word; }
.gamebonding-hero { padding: 5rem 0 4rem; }
.gamebonding-section { padding: 4rem 0; }
}

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

.gamebonding-cookie-management { margin-top: 2rem; }
.gamebonding-cookie-option { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--gamebonding-gray-50); border-radius: var(--gamebonding-border-radius-lg); margin-bottom: 1.25rem; border: 2px solid var(--gamebonding-gray-200); }
.gamebonding-cookie-info h3 { margin-bottom: 0.6rem; font-size: 1.1rem; font-weight: 800; }
.gamebonding-cookie-info p { margin-bottom: 0; font-size: 0.95rem; }
.gamebonding-cookie-toggle { display: flex; align-items: center; gap: 0.75rem; }
