/* SocialFusionHub.net - Norwegian Gaming Platform Design - Purple/Blue Theme */
:root {
--sfh-primary: #7c3aed;
--sfh-primary-dark: #6d28d9;
--sfh-primary-light: #8b5cf6;
--sfh-secondary: #3b82f6;
--sfh-accent: #f59e0b;
--sfh-success: #10b981;
--sfh-warning: #f59e0b;
--sfh-error: #ef4444;
--sfh-gray-50: #faf5ff;
--sfh-gray-100: #f3f4f6;
--sfh-gray-200: #e5e7eb;
--sfh-gray-300: #d1d5db;
--sfh-gray-400: #9ca3af;
--sfh-gray-500: #6b7280;
--sfh-gray-600: #4b5563;
--sfh-gray-700: #374151;
--sfh-gray-800: #1f2937;
--sfh-gray-900: #111827;
--sfh-white: #ffffff;
--sfh-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
--sfh-shadow: 0 4px 6px rgba(0,0,0,0.1);
--sfh-shadow-md: 0 10px 15px rgba(0,0,0,0.1);
--sfh-shadow-lg: 0 20px 25px rgba(0,0,0,0.1);
--sfh-shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
--sfh-gradient-primary: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
--sfh-gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
--sfh-gradient-hero: linear-gradient(135deg, #6d28d9 0%, #7c3aed 35%, #3b82f6 70%, #60a5fa 100%);
--sfh-border-radius: 8px;
--sfh-border-radius-lg: 12px;
--sfh-border-radius-xl: 18px;
--sfh-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--sfh-transition: all 0.3s ease;
--sfh-transition-fast: all 0.15s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sfh-font-family); line-height: 1.6; color: var(--sfh-gray-800); background-color: var(--sfh-gray-50); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: var(--sfh-gray-900); word-wrap: break-word; overflow-wrap: break-word; }
h1 { font-size: 2.75rem; } h2 { font-size: 2.25rem; } h3 { font-size: 1.875rem; }
p { margin-bottom: 1rem; color: var(--sfh-gray-600); word-wrap: break-word; overflow-wrap: break-word; }
a { color: var(--sfh-primary); text-decoration: none; transition: var(--sfh-transition-fast); word-wrap: break-word; overflow-wrap: break-word; }
a:hover { color: var(--sfh-primary-dark); }
.sfh-container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.sfh-navbar { background: var(--sfh-white); box-shadow: var(--sfh-shadow); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--sfh-transition); border-bottom: 3px solid var(--sfh-primary); }
.sfh-navbar-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.sfh-navbar-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 800; color: var(--sfh-primary); text-decoration: none; letter-spacing: -0.5px; }
.sfh-navbar-logo { height: 45px; width: auto; }
.sfh-navbar-toggle { display: none; flex-direction: column; gap: 5px; background: var(--sfh-primary); border: 2px solid var(--sfh-primary); border-radius: var(--sfh-border-radius); cursor: pointer; padding: 10px; transition: var(--sfh-transition-fast); }
.sfh-navbar-toggle:hover { background: var(--sfh-primary-dark); }
.sfh-navbar-toggle-bar { width: 28px; height: 3px; background: var(--sfh-white); border-radius: 3px; transition: var(--sfh-transition); }
.sfh-navbar-menu { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin-bottom: 0;}
.sfh-navbar-link { color: var(--sfh-gray-700); font-weight: 600; padding: 0.75rem 1.25rem; border-radius: var(--sfh-border-radius); position: relative; transition: var(--sfh-transition); font-size: 0.95rem; }
.sfh-navbar-link:hover { background: var(--sfh-gray-100); color: var(--sfh-primary); }
.sfh-navbar-link.active { background: var(--sfh-primary); color: var(--sfh-white); }
.sfh-navbar-cta { background: var(--sfh-gradient-primary); color: var(--sfh-white); padding: 0.75rem 1.75rem; border-radius: var(--sfh-border-radius-lg); font-weight: 700; transition: var(--sfh-transition); box-shadow: var(--sfh-shadow); border: none; font-size: 0.95rem; }
.sfh-navbar-cta:hover { transform: translateY(-2px); box-shadow: var(--sfh-shadow-md); color: var(--sfh-white); }
@media (max-width: 768px) {
.sfh-navbar-toggle { display: flex; }
.sfh-navbar-menu { position: fixed; top: 75px; left: 0; right: 0; background: var(--sfh-white); flex-direction: column; padding: 2rem 1.5rem; box-shadow: var(--sfh-shadow-lg); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: var(--sfh-transition); z-index: 1000; gap: 0.75rem; }
.sfh-navbar-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.sfh-navbar-menu li { width: 100%; }
.sfh-navbar-link { display: block; width: 100%; padding: 1rem 1.5rem; text-align: center; font-size: 1rem; }
.sfh-navbar-link:hover { background: var(--sfh-primary); color: var(--sfh-white); }
.sfh-navbar-cta { text-align: center; display: block; padding: 1rem 1.5rem; margin-top: 0.5rem; }
.sfh-navbar-toggle.active .sfh-navbar-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.sfh-navbar-toggle.active .sfh-navbar-toggle-bar:nth-child(2) { opacity: 0; }
.sfh-navbar-toggle.active .sfh-navbar-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}
.sfh-main { margin-top: 75px; min-height: calc(100vh - 75px); }
.sfh-section { padding: 5rem 0; }
.sfh-section-alt { background: var(--sfh-white); }
.sfh-hero { background: var(--sfh-gradient-hero); color: var(--sfh-white); padding: 6rem 0; position: relative; overflow: hidden; border-bottom: 5px solid var(--sfh-accent); }
.sfh-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: rgba(255,255,255,0.05); transform: rotate(-15deg); }
.sfh-hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.sfh-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); padding: 0.65rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; margin-bottom: 2rem; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 1px; }
.sfh-hero-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; color: var(--sfh-white); text-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.sfh-hero-subtitle { font-size: 1.3rem; margin-bottom: 2.5rem; color: var(--sfh-white); opacity: 0.95; font-weight: 400; }
.sfh-hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--sfh-white); color: var(--sfh-primary); padding: 1.15rem 2.5rem; border-radius: var(--sfh-border-radius-lg); font-size: 1.125rem; font-weight: 700; text-decoration: none; transition: var(--sfh-transition); box-shadow: var(--sfh-shadow-lg); }
.sfh-hero-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--sfh-shadow-xl); color: var(--sfh-primary); }
.sfh-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.sfh-feature-card { background: var(--sfh-white); padding: 2.5rem 2rem; border-radius: var(--sfh-border-radius-xl); text-align: center; box-shadow: var(--sfh-shadow); transition: var(--sfh-transition); border: 2px solid transparent; }
.sfh-feature-card:hover { transform: translateY(-8px); box-shadow: var(--sfh-shadow-lg); border-color: var(--sfh-primary); }
.sfh-feature-icon { width: 70px; height: 70px; background: var(--sfh-gradient-primary); border-radius: var(--sfh-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; color: var(--sfh-white); box-shadow: var(--sfh-shadow); }
.sfh-feature-title { font-size: 1.35rem; margin-bottom: 1rem; color: var(--sfh-gray-900); }
.sfh-feature-desc { color: var(--sfh-gray-600); line-height: 1.7; font-size: 0.95rem; }
.sfh-games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.sfh-game-card { background: var(--sfh-white); border-radius: var(--sfh-border-radius-xl); overflow: hidden; box-shadow: var(--sfh-shadow); transition: var(--sfh-transition); position: relative; border: 2px solid transparent; }
.sfh-game-card:hover { transform: translateY(-8px); box-shadow: var(--sfh-shadow-lg); border-color: var(--sfh-primary); }
.sfh-game-card.featured { border-color: var(--sfh-accent); }
.sfh-game-badge { position: absolute; top: 1rem; right: 1rem; background: var(--sfh-gradient-secondary); color: var(--sfh-white); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; z-index: 1; text-transform: uppercase; box-shadow: var(--sfh-shadow); }
.sfh-game-image { width: 100%; height: 220px; overflow: hidden; position: relative; background: var(--sfh-gray-100); }
.sfh-game-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--sfh-transition); }
.sfh-game-card:hover .sfh-game-image img { transform: scale(1.1); }
.sfh-game-content { padding: 1.75rem; }
.sfh-game-title { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--sfh-gray-900); }
.sfh-game-desc { color: var(--sfh-gray-600); margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.9rem; }
.sfh-game-stats { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--sfh-gray-500); }
.sfh-game-play { width: 100%; background: var(--sfh-gradient-primary); color: var(--sfh-white); border: none; padding: 0.85rem 1.5rem; border-radius: var(--sfh-border-radius); font-weight: 700; cursor: pointer; transition: var(--sfh-transition); font-size: 1rem; }
.sfh-game-play:hover { transform: translateY(-2px); box-shadow: var(--sfh-shadow-md); }
.sfh-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: var(--sfh-border-radius-lg); font-weight: 700; text-decoration: none; transition: var(--sfh-transition); cursor: pointer; border: none; font-size: 1rem; }
.sfh-btn-primary { background: var(--sfh-gradient-primary); color: var(--sfh-white); box-shadow: var(--sfh-shadow); }
.sfh-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sfh-shadow-md); color: var(--sfh-white); }
.sfh-btn-secondary { background: var(--sfh-white); color: var(--sfh-primary); border: 2px solid var(--sfh-primary); }
.sfh-btn-secondary:hover { background: var(--sfh-primary); color: var(--sfh-white); }
.sfh-footer { background: var(--sfh-gray-900); color: var(--sfh-white); padding: 3.5rem 0 1.5rem; border-top: 4px solid var(--sfh-primary); }
.sfh-footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.sfh-footer-section h3 { color: var(--sfh-white); margin-bottom: 1.25rem; font-size: 1.25rem; }
.sfh-footer-section p { margin-bottom: 0.65rem; color: var(--sfh-gray-300); font-size: 0.9rem; }
.sfh-footer-section a { color: var(--sfh-gray-200); transition: var(--sfh-transition-fast); }
.sfh-footer-section a:hover { color: var(--sfh-white); text-decoration: underline; }
.sfh-disclaimer { background: var(--sfh-gray-800); padding: 1.75rem; border-radius: var(--sfh-border-radius-lg); margin-bottom: 2rem; border-left: 4px solid var(--sfh-accent); }
.sfh-disclaimer p { margin-bottom: 0.75rem; font-size: 0.85rem; line-height: 1.6; color: var(--sfh-gray-200); }
.sfh-disclaimer a { color: var(--sfh-accent); font-weight: 600; }
.sfh-footer-bottom { border-top: 1px solid var(--sfh-gray-700); padding-top: 1.75rem; text-align: center; font-size: 0.85rem; color: var(--sfh-gray-300); }
.sfh-cookie-popup { position: fixed; bottom: 2rem; left: 2rem; right: 2rem; max-width: 500px; background: var(--sfh-white); padding: 2rem; border-radius: var(--sfh-border-radius-xl); box-shadow: var(--sfh-shadow-xl); z-index: 9999; transform: translateY(150px); opacity: 0; transition: var(--sfh-transition); border: 3px solid var(--sfh-primary); }
.sfh-cookie-popup.show { transform: translateY(0); opacity: 1; }
.sfh-cookie-content { margin-bottom: 1.5rem; }
.sfh-cookie-content h4 { margin-bottom: 0.75rem; color: var(--sfh-gray-900); font-size: 1.25rem; }
.sfh-cookie-content p { margin-bottom: 0.5rem; color: var(--sfh-gray-600); font-size: 0.9rem; line-height: 1.6; }
.sfh-cookie-actions { display: flex; gap: 1rem; }
.sfh-cookie-accept { background: var(--sfh-gradient-primary); color: var(--sfh-white); padding: 0.85rem 1.75rem; border-radius: var(--sfh-border-radius); font-weight: 700; border: none; cursor: pointer; transition: var(--sfh-transition); flex: 1; }
.sfh-cookie-accept:hover { transform: translateY(-2px); box-shadow: var(--sfh-shadow-md); }
.sfh-cookie-link { color: var(--sfh-primary); font-weight: 600; font-size: 0.9rem; }
.sfh-form-group { margin-bottom: 1.75rem; }
.sfh-form-label { display: block; margin-bottom: 0.65rem; font-weight: 600; color: var(--sfh-gray-700); font-size: 0.95rem; }
.sfh-form-control { width: 100%; padding: 0.85rem 1.15rem; border: 2px solid var(--sfh-gray-300); border-radius: var(--sfh-border-radius); font-size: 1rem; transition: var(--sfh-transition-fast); background: var(--sfh-white); font-family: var(--sfh-font-family); }
.sfh-form-control:focus { outline: none; border-color: var(--sfh-primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.sfh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.sfh-alert { padding: 1.25rem 1.5rem; border-radius: var(--sfh-border-radius-lg); margin-bottom: 1.25rem; border-left: 4px solid; font-size: 0.95rem; }
.sfh-alert-info { background: #ede9fe; border-color: var(--sfh-primary); color: var(--sfh-primary-dark); }
.sfh-alert-success { background: #d1fae5; border-color: var(--sfh-success); color: #065f46; }
.sfh-alert-error { background: #fee2e2; border-color: var(--sfh-error); color: #991b1b; }
.sfh-contact-hero, .sfh-privacy-hero, .sfh-terms-hero, .sfh-cookies-hero, .sfh-about-hero, .sfh-games-hero { background: var(--sfh-gradient-hero); color: var(--sfh-white); text-align: center; padding: 5rem 0; border-bottom: 4px solid var(--sfh-accent); }
.sfh-contact-hero-icon, .sfh-privacy-hero-icon, .sfh-terms-hero-icon, .sfh-cookies-hero-icon, .sfh-about-hero-icon { width: 75px; height: 75px; background: rgba(255,255,255,0.15); border-radius: var(--sfh-border-radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); }
.sfh-contact-hero h1, .sfh-privacy-hero h1, .sfh-terms-hero h1, .sfh-cookies-hero h1, .sfh-about-hero h1, .sfh-games-hero-content h1 { font-size: 2.75rem; margin-bottom: 1rem; color: var(--sfh-white); text-shadow: 0 3px 6px rgba(0,0,0,0.3); }
.sfh-contact-hero-subtitle, .sfh-privacy-hero-subtitle, .sfh-terms-hero-subtitle, .sfh-cookies-hero-subtitle, .sfh-about-hero-subtitle, .sfh-games-hero-subtitle { font-size: 1.15rem; color: var(--sfh-white); opacity: 0.95; font-weight: 400; }
.sfh-contact-hero-date, .sfh-privacy-hero-date, .sfh-terms-hero-date, .sfh-cookies-hero-date { font-size: 0.9rem; color: var(--sfh-white); opacity: 0.85; margin-top: 0.5rem; }
.sfh-contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.sfh-contact-info-card, .sfh-contact-form-card { background: var(--sfh-white); padding: 2.5rem; border-radius: var(--sfh-border-radius-xl); box-shadow: var(--sfh-shadow); border-top: 4px solid var(--sfh-primary); }
.sfh-contact-info-card h3, .sfh-contact-form-card h3 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; color: var(--sfh-gray-900); }
.sfh-contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.sfh-contact-detail-item { display: flex; gap: 1.25rem; }
.sfh-contact-detail-icon { width: 50px; height: 50px; background: var(--sfh-gradient-primary); border-radius: var(--sfh-border-radius); display: flex; align-items: center; justify-content: center; color: var(--sfh-white); font-size: 1.25rem; flex-shrink: 0; }
.sfh-contact-detail-content h4 { margin-bottom: 0.35rem; color: var(--sfh-gray-900); font-size: 1.05rem; }
.sfh-contact-detail-content p { margin-bottom: 0; color: var(--sfh-gray-600); font-size: 0.9rem; }
.sfh-form-description { color: var(--sfh-gray-600); margin-bottom: 1.75rem; font-size: 0.95rem; }
.sfh-privacy-content, .sfh-terms-content, .sfh-cookies-content, .sfh-about-content { max-width: 820px; margin: 0 auto; }
.sfh-privacy-section, .sfh-terms-section, .sfh-cookies-section, .sfh-about-section { margin-bottom: 3rem; padding: 2.5rem; background: var(--sfh-white); border-radius: var(--sfh-border-radius-xl); box-shadow: var(--sfh-shadow); border-left: 4px solid var(--sfh-primary); }
.sfh-privacy-section h2, .sfh-terms-section h2, .sfh-cookies-section h2, .sfh-about-section h2 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; color: var(--sfh-gray-900); font-size: 1.5rem; }
.sfh-privacy-section h3, .sfh-terms-section h3, .sfh-cookies-section h3 { color: var(--sfh-gray-800); margin: 1.75rem 0 1rem 0; font-size: 1.25rem; }
.sfh-privacy-section p, .sfh-terms-section p, .sfh-cookies-section p, .sfh-about-section p { margin-bottom: 1rem; line-height: 1.7; color: var(--sfh-gray-700); }
.sfh-privacy-section ul, .sfh-terms-section ul, .sfh-cookies-section ul, .sfh-about-section ul { margin-bottom: 1rem; padding-left: 1.75rem; }
.sfh-privacy-section li, .sfh-terms-section li, .sfh-cookies-section li, .sfh-about-section li { margin-bottom: 0.65rem; line-height: 1.6; color: var(--sfh-gray-700); }
.sfh-privacy-section a, .sfh-terms-section a, .sfh-cookies-section a { color: var(--sfh-primary); font-weight: 600; }
.sfh-privacy-section a:hover, .sfh-terms-section a:hover, .sfh-cookies-section a:hover { text-decoration: underline; }
.sfh-games-stats { display: flex; justify-content: center; gap: 3.5rem; margin-top: 2.5rem; }
.sfh-stat-item { text-align: center; }
.sfh-stat-number { display: block; font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.sfh-stat-label { font-size: 0.9rem; opacity: 0.9; }
.sfh-popular-games, .sfh-game-stats-section { background: var(--sfh-gray-50); }
.sfh-all-games, .sfh-community-features { background: var(--sfh-white); }
.sfh-disclaimer-section { background: var(--sfh-gray-50); }
.sfh-disclaimer-content { max-width: 900px; margin: 0 auto; }
.sfh-text-center { text-align: center; }
.sfh-mb-5 { margin-bottom: 3rem; }
.sfh-mt-5 { margin-top: 3rem; }
.sfh-mt-4 { margin-top: 2rem; }
@media (max-width: 768px) {
.sfh-hero-title { font-size: 2.5rem; }
.sfh-hero-subtitle { font-size: 1.125rem; }
.sfh-features-grid { grid-template-columns: 1fr; }
.sfh-games-grid { grid-template-columns: 1fr; }
.sfh-contact-content { grid-template-columns: 1fr; gap: 2rem; }
.sfh-form-row { grid-template-columns: 1fr; }
.sfh-cookie-popup { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.5rem; }
.sfh-cookie-actions { flex-direction: column; }
.sfh-games-stats { flex-direction: column; gap: 2rem; }
.sfh-privacy-section, .sfh-terms-section, .sfh-cookies-section, .sfh-about-section { padding: 1.75rem; }
h1 { font-size: 2.25rem; } h2 { font-size: 1.875rem; } h3 { font-size: 1.5rem; }
}
.sfh-btn-loading { display: inline-flex; align-items: center; gap: 0.5rem; }
.sfh-btn-loading .fa-spin { animation: sfh-spin 1s linear infinite; }
@keyframes sfh-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.sfh-form-control.error { border-color: var(--sfh-error); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.sfh-category-games { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }
.sfh-game-tag { background: var(--sfh-gray-100); color: var(--sfh-gray-700); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; border: 1px solid var(--sfh-gray-200); }
.sfh-testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sfh-gray-200); }
.sfh-author-avatar { width: 50px; height: 50px; background: var(--sfh-gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sfh-white); font-size: 1.25rem; }
.sfh-author-info h4 { margin-bottom: 0.25rem; color: var(--sfh-gray-900); font-size: 1rem; }
.sfh-author-info span { color: var(--sfh-gray-500); font-size: 0.85rem; }
.sfh-news-date { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 65px; height: 65px; background: var(--sfh-gradient-primary); border-radius: var(--sfh-border-radius); color: var(--sfh-white); margin-bottom: 1.25rem; }
.sfh-news-day { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.sfh-news-month { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.sfh-news-content h3 { margin-bottom: 0.75rem; }
.sfh-news-link { color: var(--sfh-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.sfh-news-link:hover { text-decoration: underline; }
.sfh-highlight-stats { display: flex; gap: 1.25rem; margin-top: 1rem; flex-wrap: wrap; }
.sfh-highlight-stats span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--sfh-gray-600); font-size: 0.85rem; }
.sfh-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.sfh-cta-content h2 { margin-bottom: 1rem; }
.sfh-cta-content p { margin-bottom: 2rem; font-size: 1.05rem; }
.sfh-cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.sfh-cookie-management { max-width: 650px; margin: 2.5rem auto; }
.sfh-cookie-option { display: flex; justify-content: space-between; align-items: center; padding: 1.75rem; margin-bottom: 1.25rem; background: var(--sfh-white); border: 2px solid var(--sfh-gray-200); border-radius: var(--sfh-border-radius-lg); box-shadow: var(--sfh-shadow-sm); transition: var(--sfh-transition); }
.sfh-cookie-option:hover { box-shadow: var(--sfh-shadow); border-color: var(--sfh-primary); }
.sfh-cookie-info h3 { margin: 0 0 0.5rem 0; color: var(--sfh-gray-900); font-size: 1.15rem; }
.sfh-cookie-info p { margin: 0; color: var(--sfh-gray-600); font-size: 0.9rem; }
.sfh-cookie-toggle { display: flex; align-items: center; gap: 0.75rem; }
.sfh-cookie-toggle input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--sfh-primary); cursor: pointer; }
.sfh-cookie-toggle label { font-weight: 600; color: var(--sfh-gray-700); cursor: pointer; user-select: none; font-size: 0.95rem; }
.sfh-message { margin: 1.5rem 0; }
@media (max-width: 640px) {
.sfh-cookie-option { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.sfh-cta-actions { flex-direction: column; width: 100%; }
.sfh-cta-actions .sfh-btn { width: 100%; justify-content: center; }
}
