/* playunitygames.org - Deutsche Kostenlose Soziale Spiele - Emerald/Orange Dynamic Theme */
:root {
--playunitygames-primary: #10b981;
--playunitygames-primary-dark: #059669;
--playunitygames-primary-light: #34d399;
--playunitygames-secondary: #f97316;
--playunitygames-accent: #3b82f6;
--playunitygames-success: #22c55e;
--playunitygames-warning: #eab308;
--playunitygames-error: #ef4444;
--playunitygames-gray-50: #f9fafb;
--playunitygames-gray-100: #f3f4f6;
--playunitygames-gray-200: #e5e7eb;
--playunitygames-gray-300: #d1d5db;
--playunitygames-gray-400: #9ca3af;
--playunitygames-gray-500: #6b7280;
--playunitygames-gray-600: #4b5563;
--playunitygames-gray-700: #374151;
--playunitygames-gray-800: #1f2937;
--playunitygames-gray-900: #111827;
--playunitygames-white: #ffffff;
--playunitygames-shadow-sm: 0 1px 2px 0 rgba(16,185,129,0.05);
--playunitygames-shadow: 0 4px 6px -1px rgba(16,185,129,0.1);
--playunitygames-shadow-md: 0 10px 15px -3px rgba(16,185,129,0.15);
--playunitygames-shadow-lg: 0 20px 25px -5px rgba(16,185,129,0.2);
--playunitygames-shadow-xl: 0 25px 50px -12px rgba(16,185,129,0.25);
--playunitygames-gradient-primary: linear-gradient(135deg, #10b981 0%, #34d399 50%, #f97316 100%);
--playunitygames-gradient-hero: linear-gradient(120deg, #059669 0%, #10b981 40%, #f97316 100%);
--playunitygames-gradient-accent: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
--playunitygames-gradient-card: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, rgba(249,115,22,0.05) 100%);
--playunitygames-border-radius: 8px;
--playunitygames-border-radius-lg: 16px;
--playunitygames-border-radius-xl: 24px;
--playunitygames-font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--playunitygames-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
--playunitygames-transition-fast: all 0.2s ease-in-out;
}

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

.playunitygames-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.playunitygames-navbar { background: var(--playunitygames-white); box-shadow: 0 1px 3px rgba(0,0,0,0.05); position: sticky; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--playunitygames-transition); backdrop-filter: blur(10px); background: rgba(255,255,255,0.95); }
.playunitygames-navbar-container { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.playunitygames-navbar-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 900; background: var(--playunitygames-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.playunitygames-navbar-logo { height: 48px; width: auto; filter: drop-shadow(0 2px 4px rgba(16,185,129,0.2)); }
.playunitygames-navbar-toggle { display: none; flex-direction: column; gap: 5px; background: var(--playunitygames-gradient-accent); border: none; border-radius: var(--playunitygames-border-radius); cursor: pointer; padding: 12px 14px; transition: var(--playunitygames-transition-fast); box-shadow: var(--playunitygames-shadow); }
.playunitygames-navbar-toggle:hover { transform: scale(1.08); box-shadow: var(--playunitygames-shadow-md); }
.playunitygames-navbar-toggle:active { transform: scale(0.98); }
.playunitygames-navbar-toggle-bar { width: 24px; height: 2.5px; background: var(--playunitygames-white); border-radius: 3px; transition: var(--playunitygames-transition); }
.playunitygames-navbar-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin-bottom: 0; }
.playunitygames-navbar-link { color: var(--playunitygames-gray-700); font-weight: 600; padding: 0.625rem 1rem; border-radius: var(--playunitygames-border-radius); position: relative; transition: var(--playunitygames-transition-fast); font-size: 0.95rem; }
.playunitygames-navbar-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--playunitygames-gradient-primary); transition: var(--playunitygames-transition-fast); transform: translateX(-50%); }
.playunitygames-navbar-link:hover { background: var(--playunitygames-gray-100); color: var(--playunitygames-primary); }
.playunitygames-navbar-link:hover::after { width: 80%; }
.playunitygames-navbar-link.active { background: var(--playunitygames-gradient-card); color: var(--playunitygames-primary); font-weight: 700; }
.playunitygames-navbar-cta { background: var(--playunitygames-gradient-accent); color: var(--playunitygames-white); padding: 0.75rem 1.75rem; border-radius: 999px; font-weight: 700; transition: var(--playunitygames-transition); box-shadow: var(--playunitygames-shadow); border: none; font-size: 0.95rem; }
.playunitygames-navbar-cta:hover { transform: translateY(-2px); box-shadow: var(--playunitygames-shadow-lg); color: var(--playunitygames-white); }
.playunitygames-navbar-cta:active { transform: translateY(0); }

@media (max-width: 768px) {
.playunitygames-navbar-toggle { display: flex; }
.playunitygames-navbar-menu { position: fixed; top: 85px; left: 0; right: 0; background: var(--playunitygames-white); flex-direction: column; padding: 2rem 1.5rem; box-shadow: var(--playunitygames-shadow-xl); transform: translateY(-150%); opacity: 0; visibility: hidden; transition: var(--playunitygames-transition); z-index: 1000; gap: 0.5rem; max-height: calc(100vh - 85px); overflow-y: auto; border-top: 3px solid var(--playunitygames-primary); }
.playunitygames-navbar-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.playunitygames-navbar-menu li { width: 100%; }
.playunitygames-navbar-link { display: block; width: 100%; padding: 1rem 1.25rem; text-align: left; font-size: 1.05rem; }
.playunitygames-navbar-link::after { display: none; }
.playunitygames-navbar-link:hover { background: var(--playunitygames-gradient-card); }
.playunitygames-navbar-cta { text-align: center; display: block; padding: 1rem 1.25rem; margin-top: 0.5rem; }
.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(2) { opacity: 0; }
.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}

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

.playunitygames-hero { background: var(--playunitygames-gradient-hero); color: var(--playunitygames-white); padding: 7rem 0 6rem; position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
.playunitygames-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%); animation: playunitygames-rotate 25s linear infinite; }
.playunitygames-hero::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 70%; height: 160%; background: radial-gradient(circle at center, rgba(249,115,22,0.15) 0%, transparent 70%); animation: playunitygames-rotate-reverse 30s linear infinite; }
.playunitygames-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.playunitygames-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.18); padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); letter-spacing: 0.5px; text-transform: uppercase; }
.playunitygames-hero-title { font-size: 3.75rem; font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; color: var(--playunitygames-white); text-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.playunitygames-hero-subtitle { font-size: 1.3rem; margin-bottom: 2.5rem; color: rgba(255,255,255,0.95); font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; }
.playunitygames-hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--playunitygames-white); color: var(--playunitygames-primary); padding: 1.25rem 2.5rem; border-radius: var(--playunitygames-border-radius-lg); font-size: 1.125rem; font-weight: 800; transition: var(--playunitygames-transition); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.playunitygames-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); color: var(--playunitygames-primary); }
.playunitygames-hero-cta:active { transform: translateY(-1px); }

@keyframes playunitygames-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes playunitygames-rotate-reverse { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } }

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

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

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

.playunitygames-cta-content { text-align: center; max-width: 800px; margin: 0 auto; padding: 3rem 2rem; background: var(--playunitygames-gradient-card); border-radius: var(--playunitygames-border-radius-xl); box-shadow: var(--playunitygames-shadow); }
.playunitygames-cta-content h2 { font-size: 2.75rem; margin-bottom: 1rem; background: var(--playunitygames-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.playunitygames-cta-actions { display: flex; gap: 1.25rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

.playunitygames-footer { background: var(--playunitygames-gray-900); color: var(--playunitygames-gray-300); padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.playunitygames-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--playunitygames-gradient-primary); }
.playunitygames-footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.playunitygames-footer-section h3 { color: var(--playunitygames-white); margin-bottom: 1.25rem; font-size: 1.25rem; background: var(--playunitygames-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.playunitygames-footer-section p { margin-bottom: 0.75rem; color: var(--playunitygames-gray-400); font-size: 0.95rem; line-height: 1.6; }
.playunitygames-footer-section a { color: var(--playunitygames-gray-300); transition: var(--playunitygames-transition-fast); }
.playunitygames-footer-section a:hover { color: var(--playunitygames-primary); padding-left: 4px; }
.playunitygames-disclaimer { background: rgba(16,185,129,0.05); padding: 2rem; border-radius: var(--playunitygames-border-radius-lg); margin-bottom: 2rem; border-left: 4px solid var(--playunitygames-primary); }
.playunitygames-disclaimer p { margin-bottom: 0.75rem; font-size: 0.9rem; line-height: 1.7; color: var(--playunitygames-gray-300); }
.playunitygames-disclaimer a { color: var(--playunitygames-primary); font-weight: 600; }
.playunitygames-footer-bottom { border-top: 1px solid var(--playunitygames-gray-800); padding-top: 2rem; text-align: center; font-size: 0.9rem; color: var(--playunitygames-gray-400); }

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

.playunitygames-form-group { margin-bottom: 1.75rem; }
.playunitygames-form-label { display: block; margin-bottom: 0.625rem; font-weight: 700; color: var(--playunitygames-gray-700); font-size: 0.95rem; }
.playunitygames-form-control { width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--playunitygames-gray-300); border-radius: var(--playunitygames-border-radius); font-size: 1rem; transition: var(--playunitygames-transition-fast); background: var(--playunitygames-white); font-family: var(--playunitygames-font-family); }
.playunitygames-form-control:focus { outline: none; border-color: var(--playunitygames-primary); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }
.playunitygames-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.playunitygames-form-control.error { border-color: var(--playunitygames-error); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

.playunitygames-alert { padding: 1.25rem 1.5rem; border-radius: var(--playunitygames-border-radius-lg); margin-bottom: 1.25rem; border-left: 4px solid; font-size: 1rem; }
.playunitygames-alert-info { background: rgba(16,185,129,0.1); border-color: var(--playunitygames-primary); color: #065f46; }
.playunitygames-alert-success { background: rgba(34,197,94,0.1); border-color: var(--playunitygames-success); color: #166534; }
.playunitygames-alert-error { background: rgba(239,68,68,0.1); border-color: var(--playunitygames-error); color: #991b1b; }

.playunitygames-contact-hero, .playunitygames-privacy-hero, .playunitygames-terms-hero, .playunitygames-cookies-hero, .playunitygames-about-hero, .playunitygames-games-hero { background: var(--playunitygames-gradient-hero); color: var(--playunitygames-white); text-align: center; padding: 5rem 0 4rem; position: relative; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
.playunitygames-contact-hero-icon, .playunitygames-privacy-hero-icon, .playunitygames-terms-hero-icon, .playunitygames-cookies-hero-icon, .playunitygames-about-hero-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border-radius: var(--playunitygames-border-radius-xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.25rem; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.25); }
.playunitygames-contact-hero h1, .playunitygames-privacy-hero h1, .playunitygames-terms-hero h1, .playunitygames-cookies-hero h1, .playunitygames-about-hero h1, .playunitygames-games-hero-content h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--playunitygames-white); text-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.playunitygames-contact-hero-subtitle, .playunitygames-privacy-hero-subtitle, .playunitygames-terms-hero-subtitle, .playunitygames-cookies-hero-subtitle, .playunitygames-about-hero-subtitle, .playunitygames-games-hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.95); font-weight: 400; }
.playunitygames-contact-hero-date, .playunitygames-privacy-hero-date, .playunitygames-terms-hero-date, .playunitygames-cookies-hero-date { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 0.5rem; }

.playunitygames-contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.playunitygames-contact-info-card, .playunitygames-contact-form-card { background: var(--playunitygames-white); padding: 2.5rem; border-radius: var(--playunitygames-border-radius-xl); box-shadow: var(--playunitygames-shadow-md); border: 2px solid var(--playunitygames-gray-200); }
.playunitygames-contact-info-card:hover, .playunitygames-contact-form-card:hover { border-color: var(--playunitygames-primary); }
.playunitygames-contact-info-card h3, .playunitygames-contact-form-card h3 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; color: var(--playunitygames-gray-900); font-size: 1.5rem; }
.playunitygames-contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.playunitygames-contact-detail-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.playunitygames-contact-detail-icon { width: 55px; height: 55px; background: var(--playunitygames-gradient-card); border: 2px solid var(--playunitygames-primary); border-radius: var(--playunitygames-border-radius-lg); display: flex; align-items: center; justify-content: center; color: var(--playunitygames-primary); font-size: 1.5rem; flex-shrink: 0; }
.playunitygames-contact-detail-content h4 { margin-bottom: 0.5rem; color: var(--playunitygames-gray-900); font-size: 1.1rem; font-weight: 700; }
.playunitygames-contact-detail-content p { margin-bottom: 0; color: var(--playunitygames-gray-600); font-size: 1rem; }
.playunitygames-form-description { color: var(--playunitygames-gray-600); margin-bottom: 1.5rem; font-size: 1rem; }

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

.playunitygames-cookie-management { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.playunitygames-cookie-option { display: flex; justify-content: space-between; align-items: center; padding: 1.75rem; background: var(--playunitygames-gradient-card); border-radius: var(--playunitygames-border-radius-lg); border: 2px solid var(--playunitygames-gray-200); transition: var(--playunitygames-transition-fast); }
.playunitygames-cookie-option:hover { border-color: var(--playunitygames-primary); }
.playunitygames-cookie-info h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.playunitygames-cookie-info p { margin-bottom: 0; font-size: 0.9rem; }
.playunitygames-cookie-toggle { display: flex; align-items: center; gap: 0.75rem; }
.playunitygames-cookie-toggle input[type="checkbox"] { width: 22px; height: 22px; cursor: pointer; accent-color: var(--playunitygames-primary); }
.playunitygames-cookie-toggle label { font-size: 0.95rem; font-weight: 700; cursor: pointer; color: var(--playunitygames-gray-700); }

.playunitygames-games-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 2rem; }
.playunitygames-stat-item { text-align: center; }
.playunitygames-stat-number { display: block; font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--playunitygames-white); }
.playunitygames-stat-label { font-size: 1rem; opacity: 0.9; color: var(--playunitygames-white); }

.playunitygames-disclaimer-section { background: var(--playunitygames-gray-100); }
.playunitygames-disclaimer-content { max-width: 1000px; margin: 0 auto; }

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

@media (max-width: 768px) {
.playunitygames-container { padding: 0 1.5rem; }
.playunitygames-hero { padding: 5rem 0 4rem; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
.playunitygames-hero-title { font-size: 2.5rem; }
.playunitygames-hero-subtitle { font-size: 1.1rem; }
.playunitygames-features-grid { grid-template-columns: 1fr; }
.playunitygames-games-grid { grid-template-columns: 1fr; }
.playunitygames-contact-content { grid-template-columns: 1fr; gap: 2rem; }
.playunitygames-form-row { grid-template-columns: 1fr; }
.playunitygames-cookie-popup { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.5rem; }
.playunitygames-cookie-actions { flex-direction: column; }
.playunitygames-games-stats { flex-direction: column; gap: 2rem; }
.playunitygames-privacy-section, .playunitygames-terms-section, .playunitygames-cookies-section, .playunitygames-about-section { padding: 2rem; }
.playunitygames-cta-actions { flex-direction: column; align-items: stretch; }
.playunitygames-cta-actions .playunitygames-btn { width: 100%; justify-content: center; }
.playunitygames-cookie-option { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.playunitygames-cta-content { padding: 2rem 1.5rem; }
.playunitygames-cta-content h2 { font-size: 2rem; }
h1 { font-size: 2.25rem; } h2 { font-size: 1.875rem; } h3 { font-size: 1.375rem; }
}

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