/* gamebonding.org - Finland Free Social Gaming - Warm Orange/Amber Theme */
:root {
--gamebonding-primary: #16f921;
--gamebonding-primary-dark: #0cea35;
--gamebonding-primary-light: #3cfb6c;
--gamebonding-secondary: #0bf513;
--gamebonding-accent: #08ea1f;
--gamebonding-success: #c52222;
--gamebonding-warning: #97fb24;
--gamebonding-error: #73f871;
--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, #6216f9 0%, #0b94f5 100%);
--gamebonding-gradient-hero: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(251,146,60,0.3) 0%, transparent 70%), linear-gradient(180deg, #130cea 0%, #1671f9 50%, #0bcaf5 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; }



.ggg-articles{
    position:relative;
    padding:80px 0;
    background:linear-gradient(180deg,#090b1f 0%,#101943 48%,#080a18 100%);
    color:#fff;
    overflow:hidden;
}

.ggg-articles:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
            radial-gradient(circle at 12% 0%,rgba(116,83,255,.26),transparent 34%),
            radial-gradient(circle at 88% 16%,rgba(31,214,255,.18),transparent 32%);
}

.ggg-articles-head{
    position:relative;
    max-width:780px;
    margin:0 auto 42px;
    text-align:center;
}

.ggg-articles-kicker{
    display:inline-flex;
    margin-bottom:14px;
    padding:7px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.18);
    color:#8eeaff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.ggg-articles-title{
    margin:0 0 14px;
    color:#fff;
    font-size:clamp(30px,4vw,48px);
    line-height:1.08;
    font-weight:900;
}

.ggg-articles-text{
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.7;
}

.ggg-articles-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.ggg-article-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
    padding:26px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 22px 56px rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
}

.ggg-article-date{
    display:inline-flex;
    width:max-content;
    margin-bottom:14px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(142,234,255,.12);
    color:#8eeaff;
    font-size:13px;
    font-weight:800;
}

.ggg-article-card h3{
    margin:0 0 12px;
    color:#fff;
    font-size:24px;
    line-height:1.22;
    font-weight:900;
}

.ggg-article-card p{
    margin:0 0 22px;
    color:rgba(255,255,255,.78);
    line-height:1.7;
}

.ggg-article-link{
    margin-top:auto;
    display:inline-flex;
    width:max-content;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:999px;
    background:#8eeaff;
    color:#071026;
    font-weight:900;
    text-decoration:none;
}

.ggg-article-link:hover{
    color:#071026;
    filter:brightness(.96);
    text-decoration:none;
}

@media(max-width:900px){
    .ggg-articles-grid{
        grid-template-columns:1fr;
    }
}


.ggg-page-main{
    position:relative;
    overflow:hidden;
    padding:76px 0 94px;
    background:
            radial-gradient(circle at 12% 6%,rgba(116,83,255,.25),transparent 34%),
            radial-gradient(circle at 88% 14%,rgba(31,214,255,.18),transparent 34%),
            linear-gradient(180deg,#070817 0%,#101943 46%,#070817 100%);
}

.ggg-page-main:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.35;
    background-image:
            linear-gradient(rgba(142,234,255,.06) 1px,transparent 1px),
            linear-gradient(90deg,rgba(142,234,255,.06) 1px,transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(180deg,transparent 0%,#000 15%,#000 85%,transparent 100%);
}

.ggg-page-shell{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:0 auto;
    padding:clamp(24px,4vw,56px);
    border-radius:30px;
    background:rgba(9,12,32,.94);
    border:1px solid rgba(142,234,255,.18);
    box-shadow:
            0 28px 82px rgba(0,0,0,.42),
            inset 0 1px 0 rgba(255,255,255,.06);
    color:#fff;
}

.ggg-page-shell:before{
    content:"GalaxyGameGroove guide";
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-bottom:22px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(142,234,255,.12);
    border:1px solid rgba(142,234,255,.22);
    color:#8eeaff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.ggg-page-shell h1,
.ggg-page-shell h2,
.ggg-page-shell h3,
.ggg-page-shell h4{
    color:#fff;
    letter-spacing:-.03em;
}

.ggg-page-shell h1{
    max-width:860px;
    margin:0 0 20px;
    font-size:clamp(34px,5vw,62px);
    line-height:1.02;
}

.ggg-page-shell h2{
    position:relative;
    margin:48px 0 16px;
    padding-top:18px;
    font-size:clamp(27px,3.4vw,40px);
    line-height:1.1;
}

.ggg-page-shell h2:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:88px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(90deg,#8eeaff,#7453ff);
}

.ggg-page-shell h3{
    margin:30px 0 12px;
    font-size:clamp(22px,2.4vw,28px);
    line-height:1.18;
    color:#8eeaff;
}

.ggg-page-shell h4{
    margin:24px 0 10px;
    font-size:21px;
}

.ggg-page-shell p{
    margin:0 0 18px;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.82;
}

.ggg-page-shell .article-meta{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin:0 0 20px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(142,234,255,.12);
    color:#8eeaff;
    font-size:13px;
    font-weight:900;
}

.ggg-page-shell a{
    color:#8eeaff;
    font-weight:900;
    text-decoration:none;
    border-bottom:1px solid rgba(142,234,255,.32);
}

.ggg-page-shell a:hover{
    color:#fff;
    border-bottom-color:currentColor;
    text-decoration:none;
}

.ggg-page-shell img{
    display:block;
    width:100%;
    height:auto;
    margin:26px 0;
    border-radius:26px;
    border:1px solid rgba(142,234,255,.16);
    box-shadow:0 20px 54px rgba(0,0,0,.36);
}

.ggg-page-shell ul,
.ggg-page-shell ol{
    display:grid;
    gap:12px;
    margin:22px 0 28px;
    padding:0;
    list-style:none;
}

.ggg-page-shell li{
    position:relative;
    padding:15px 16px 15px 50px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.78);
    font-size:16.5px;
    line-height:1.65;
    box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.ggg-page-shell ul li:before{
    content:"";
    position:absolute;
    left:18px;
    top:23px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg,#8eeaff,#7453ff);
    box-shadow:0 0 0 5px rgba(142,234,255,.08);
}

.ggg-page-shell ol{
    counter-reset:ggg-counter;
}

.ggg-page-shell ol li{
    counter-increment:ggg-counter;
}

.ggg-page-shell ol li:before{
    content:counter(ggg-counter);
    position:absolute;
    left:14px;
    top:14px;
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#8eeaff;
    color:#071026;
    font-size:13px;
    font-weight:900;
}

.ggg-page-shell table{
    width:100%;
    margin:30px 0;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    box-shadow:0 18px 42px rgba(0,0,0,.24);
}

.ggg-page-shell th,
.ggg-page-shell td{
    padding:16px;
    text-align:left;
    vertical-align:top;
    border-bottom:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.78);
}

.ggg-page-shell th{
    background:linear-gradient(135deg,rgba(142,234,255,.16),rgba(116,83,255,.16));
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.ggg-page-shell tr:last-child td{
    border-bottom:0;
}

.ggg-page-shell blockquote{
    margin:32px 0;
    padding:24px 26px;
    border-left:5px solid #8eeaff;
    border-radius:22px;
    background:rgba(142,234,255,.08);
}

.ggg-page-shell blockquote p{
    margin:0;
    color:#fff;
    font-size:18px;
}

.ggg-page-shell .toc,
.ggg-page-shell .contents,
.ggg-page-shell .table-of-contents{
    margin:26px 0 36px;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(142,234,255,.2);
    background:
            radial-gradient(circle at 12% 0%,rgba(142,234,255,.14),transparent 32%),
            linear-gradient(135deg,rgba(8,10,24,.86),rgba(16,25,67,.9));
}

.ggg-page-shell .toc strong,
.ggg-page-shell .contents strong,
.ggg-page-shell .table-of-contents strong{
    display:block;
    margin-bottom:14px;
    color:#fff;
    font-size:21px;
}

.ggg-page-shell .toc ol,
.ggg-page-shell .toc ul,
.ggg-page-shell .contents ol,
.ggg-page-shell .contents ul,
.ggg-page-shell .table-of-contents ol,
.ggg-page-shell .table-of-contents ul{
    margin:0;
    display:grid;
    gap:9px;
}

.ggg-page-shell .toc li,
.ggg-page-shell .contents li,
.ggg-page-shell .table-of-contents li{
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
}

.ggg-page-shell .toc li:before,
.ggg-page-shell .contents li:before,
.ggg-page-shell .table-of-contents li:before{
    display:none;
}

.ggg-page-shell .author-note,
.ggg-page-shell .note,
.ggg-page-shell .summary-box{
    margin:34px 0 0;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(142,234,255,.24);
    background:linear-gradient(135deg,rgba(142,234,255,.1),rgba(116,83,255,.12));
}

.ggg-page-shell .author-note p,
.ggg-page-shell .note p,
.ggg-page-shell .summary-box p{
    margin-bottom:0;
}

.ggg-page-related{
    position:relative;
    width:min(960px,calc(100% - 32px));
    margin:28px auto 0;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.ggg-page-related a{
    display:block;
    padding:20px;
    border-radius:22px;
    background:rgba(9,12,32,.92);
    border:1px solid rgba(142,234,255,.18);
    color:#fff;
    box-shadow:0 16px 38px rgba(0,0,0,.26);
    text-decoration:none;
}

.ggg-page-related a:hover{
    text-decoration:none;
    color:#fff;
}

.ggg-page-related span{
    display:block;
    margin-bottom:8px;
    color:#8eeaff;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.ggg-page-related strong{
    display:block;
    line-height:1.35;
}

@media(max-width:900px){
    .ggg-page-related{
        grid-template-columns:1fr;
    }

    .ggg-page-shell table{
        display:block;
        overflow-x:auto;
    }
}

@media(max-width:640px){
    .ggg-page-main{
        padding:42px 0 58px;
    }

    .ggg-page-shell{
        width:calc(100% - 24px);
        padding:24px 18px;
        border-radius:22px;
    }

    .ggg-page-shell:before{
        width:auto;
        font-size:12px;
        white-space:normal;
    }

    .ggg-page-shell p,
    .ggg-page-shell li{
        font-size:16px;
    }

    .ggg-page-shell li{
        padding-left:44px;
    }
}