/* ==========================================
   Sawalay - Global Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --accent-primary: #00f0ff;
    --accent-secondary: #7b2fff;
    --accent-tertiary: #ff2d92;
    --accent-gold: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 40px rgba(123, 47, 255, 0.3);
    --glow-pink: 0 0 40px rgba(255, 45, 146, 0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

a { color: var(--accent-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-secondary); }

/* Background Animation */
.bg-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(123, 47, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 45, 146, 0.08) 0%, transparent 40%);
    animation: bgFloat 20s ease-in-out infinite;
}
@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(3%, -2%) rotate(2deg); }
}

/* Particles */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--accent-primary); border-radius: 50%; opacity: 0.3; animation: particleFloat 15s infinite ease-in-out; }
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; background: var(--accent-secondary); }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 1s; animation-duration: 16s; background: var(--accent-tertiary); }
.particle:nth-child(5) { left: 30%; top: 10%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 90%; top: 30%; animation-delay: 5s; animation-duration: 21s; background: var(--accent-secondary); }
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: 0.3; }
    75% { transform: translateY(-30px) translateX(20px); opacity: 0.5; }
}

/* Scroll Animations */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.8); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Header */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 1rem 0; transition: all 0.4s ease; backdrop-filter: blur(20px); background: rgba(10, 10, 15, 0.8); border-bottom: 1px solid var(--border-color); }
header.scrolled { padding: 0.7rem 0; background: rgba(10, 10, 15, 0.95); }
.header-container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.8rem; color: var(--text-primary); text-decoration: none; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
nav ul { display: flex; list-style: none; gap: 0.5rem; }
nav a { color: var(--text-secondary); text-decoration: none; font-weight: 500; padding: 0.7rem 1.2rem; border-radius: 30px; transition: all 0.3s ease; font-size: 0.95rem; position: relative; }
nav a::before { content: ''; position: absolute; inset: 0; border-radius: 30px; padding: 1px; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s ease; }
nav a:hover::before, nav a.active::before { opacity: 1; }
nav a:hover, nav a.active { color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }

/* Page Hero */
.page-hero { min-height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 10rem 2rem 4rem; position: relative; }
.page-hero-small { min-height: 35vh; padding: 8rem 2rem 3rem; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(123, 47, 255, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px; background: linear-gradient(to top, var(--bg-primary), transparent); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { color: var(--text-secondary); font-size: 1.2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border-color); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; color: var(--accent-primary); margin-bottom: 1.5rem; animation: badgePulse 2s ease-in-out infinite; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent-primary); border-radius: 50%; animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* Sections */
.section { padding: 5rem 2rem; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); color: var(--bg-primary); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.4s ease; position: relative; overflow: hidden; box-shadow: var(--glow-cyan); border: none; cursor: pointer; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4); color: var(--bg-primary); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--text-primary); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; border: 1px solid var(--border-color); transition: all 0.4s ease; }
.btn-secondary:hover { background: var(--bg-card); border-color: var(--accent-primary); transform: translateY(-3px); color: var(--text-primary); }
.btn-card { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--accent-primary); padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 1px solid var(--accent-primary); transition: all 0.4s ease; margin-top: 0.5rem; }
.btn-card:hover { background: var(--accent-primary); color: var(--bg-primary); transform: translateX(5px); box-shadow: var(--glow-cyan); }
.btn-card .arrow { transition: transform 0.3s ease; }
.btn-card:hover .arrow { transform: translateX(5px); }

/* Content Blocks */
.content-block { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 3rem; margin-bottom: 2rem; }
.content-block h2 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }
.content-block p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.content-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
.content-icon.cyan { background: linear-gradient(135deg, #00f0ff, #0099cc); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3); }
.content-icon.purple { background: linear-gradient(135deg, #7b2fff, #5a1fcc); box-shadow: 0 10px 30px rgba(123, 47, 255, 0.3); }
.content-icon.pink { background: linear-gradient(135deg, #ff2d92, #cc1a6e); box-shadow: 0 10px 30px rgba(255, 45, 146, 0.3); }
.content-icon.gold { background: linear-gradient(135deg, #ffd700, #ff9500); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2rem; }
.content-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 2.5rem; transition: all 0.4s ease; }
.content-card:hover { transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.content-card h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; margin-bottom: 1rem; }
.content-card p { color: var(--text-secondary); margin-bottom: 1rem; }
.card-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.card-icon.cyan { background: linear-gradient(135deg, #00f0ff, #0099cc); }
.card-icon.purple { background: linear-gradient(135deg, #7b2fff, #5a1fcc); }
.card-icon.pink { background: linear-gradient(135deg, #ff2d92, #cc1a6e); }
.card-icon.gold { background: linear-gradient(135deg, #ffd700, #ff9500); }

/* Feature List */
.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li { color: var(--text-secondary); padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); }

/* Values & Team Grid */
.values-grid, .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-item { text-align: center; padding: 1.5rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-item h4 { font-family: 'Syne', sans-serif; margin-bottom: 0.5rem; }
.value-item p { color: var(--text-muted); font-size: 0.9rem; }
.team-role { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; }
.team-role:hover { border-color: rgba(0, 240, 255, 0.3); transform: translateY(-3px); }
.role-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.team-role h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.team-role p { color: var(--text-muted); font-size: 0.85rem; }

/* CTA Block */
.cta-block { background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1)); border: 1px solid var(--border-color); border-radius: 24px; padding: 4rem; text-align: center; margin-top: 3rem; }
.cta-block h2 { font-family: 'Syne', sans-serif; font-size: 2rem; margin-bottom: 1rem; }
.cta-block p { color: var(--text-secondary); margin-bottom: 2rem; }

/* Offer Cards */
.offer-section { margin-top: 2rem; }
.offer-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 3rem; margin-bottom: 2rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; transition: all 0.5s ease; position: relative; overflow: hidden; }
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.offer-card:hover::before { transform: scaleX(1); }
.offer-card:hover { background: var(--bg-card-hover); transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.offer-card:nth-child(even) { direction: rtl; }
.offer-card:nth-child(even) > * { direction: ltr; }
.offer-logo { display: flex; align-items: center; justify-content: center; padding: 2rem; background: rgba(255, 255, 255, 0.02); border-radius: 16px; transition: all 0.5s ease; }
.offer-card:hover .offer-logo { background: rgba(255, 255, 255, 0.05); transform: scale(1.02); }
.offer-logo img { max-width: 250px; max-height: 100px; object-fit: contain; filter: brightness(1.1); transition: all 0.5s ease; }
.offer-card:hover .offer-logo img { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255,255,255,0.1)); }
.offer-content h3 { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.offer-content h3 .icon { font-size: 1.2rem; background: linear-gradient(135deg, var(--accent-gold), #ff9500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: starPulse 2s ease-in-out infinite; }
@keyframes starPulse { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.2) rotate(10deg); } }
.offer-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.8; }
.offer-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.feature-tag { background: var(--bg-card); border: 1px solid var(--border-color); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; color: var(--text-muted); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.3); }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }
.service-icon.cyan { background: linear-gradient(135deg, #00f0ff, #0099cc); }
.service-icon.purple { background: linear-gradient(135deg, #7b2fff, #5a1fcc); }
.service-icon.pink { background: linear-gradient(135deg, #ff2d92, #cc1a6e); }
.service-icon.gold { background: linear-gradient(135deg, #ffd700, #ff9500); }
.service-card h4 { font-family: 'Syne', sans-serif; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Responsible Gaming */
.warning-block { background: linear-gradient(135deg, rgba(255, 45, 146, 0.1), rgba(255, 45, 146, 0.05)); border: 1px solid rgba(255, 45, 146, 0.3); border-radius: 20px; padding: 2rem; display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.warning-icon { font-size: 3rem; flex-shrink: 0; }
.warning-content h3 { font-family: 'Syne', sans-serif; color: var(--accent-tertiary); margin-bottom: 0.5rem; }
.warning-content p { color: var(--text-secondary); margin: 0; }
.signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.sign-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; }
.sign-card:hover { border-color: rgba(255, 45, 146, 0.3); transform: translateY(-3px); }
.sign-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.sign-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.sign-card p { color: var(--text-muted); font-size: 0.85rem; }
.tips-list { margin-top: 2rem; }
.tip-item { display: flex; gap: 2rem; padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; margin-bottom: 1rem; transition: all 0.3s ease; }
.tip-item:hover { border-color: var(--accent-primary); transform: translateX(10px); }
.tip-number { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent-primary); opacity: 0.5; flex-shrink: 0; }
.tip-content h4 { font-family: 'Syne', sans-serif; margin-bottom: 0.5rem; }
.tip-content p { color: var(--text-secondary); margin: 0; }
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.resource-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2rem; text-align: center; text-decoration: none; color: var(--text-primary); transition: all 0.4s ease; }
.resource-card:hover { border-color: var(--accent-primary); transform: translateY(-5px); color: var(--text-primary); }
.resource-card img { height: 50px; margin-bottom: 1rem; filter: brightness(1.2); }
.resource-card h4 { font-family: 'Syne', sans-serif; margin-bottom: 0.5rem; }
.resource-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.resource-link { color: var(--accent-primary); font-weight: 600; font-size: 0.9rem; }
.info-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; margin: 1.5rem 0; }
.info-box.warning { background: rgba(255, 215, 0, 0.05); border-color: rgba(255, 215, 0, 0.3); }
.info-box h4 { font-family: 'Syne', sans-serif; margin-bottom: 0.8rem; color: var(--accent-gold); }
.info-box ul { margin: 0; padding-left: 1.5rem; color: var(--text-secondary); }
.info-box li { margin-bottom: 0.5rem; }
.age-restriction-block { background: linear-gradient(135deg, rgba(255, 45, 146, 0.1), rgba(123, 47, 255, 0.1)); border: 1px solid var(--border-color); border-radius: 24px; padding: 3rem; text-align: center; margin-top: 3rem; }
.age-icon { font-size: 4rem; margin-bottom: 1rem; }
.age-restriction-block h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; margin-bottom: 1rem; }
.age-restriction-block p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form-wrapper h2, .contact-info h2 { font-family: 'Syne', sans-serif; font-size: 1.8rem; margin-bottom: 1rem; }
.contact-form-wrapper > p, .contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 500; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 1rem 1.2rem; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 1rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-secondary); }
.checkbox-group { flex-direction: row; align-items: center; gap: 0.8rem; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; }
.checkbox-group label { font-size: 0.9rem; color: var(--text-secondary); }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; display: flex; align-items: center; gap: 1.5rem; transition: all 0.3s ease; }
.contact-card:hover { border-color: rgba(0, 240, 255, 0.3); transform: translateX(5px); }
.contact-card-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.contact-card-icon.cyan { background: linear-gradient(135deg, #00f0ff, #0099cc); }
.contact-card-icon.purple { background: linear-gradient(135deg, #7b2fff, #5a1fcc); }
.contact-card-icon.pink { background: linear-gradient(135deg, #ff2d92, #cc1a6e); }
.contact-card h4 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-card p { font-size: 1rem; color: var(--text-primary); margin: 0; }
.contact-note { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 0.2rem; }
.faq-preview { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2rem; }
.faq-preview h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; margin-bottom: 1.5rem; }
.faq-item { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.faq-item h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--accent-primary); }
.faq-item p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Legal Pages */
.legal-content { padding-top: 3rem; }
.legal-block { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2.5rem; margin-bottom: 1.5rem; }
.legal-block h2 { font-family: 'Syne', sans-serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--accent-primary); }
.legal-block h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; margin: 1.5rem 0 1rem; color: var(--text-primary); }
.legal-block p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.legal-block ul { color: var(--text-secondary); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-block li { margin-bottom: 0.5rem; line-height: 1.7; }
.legal-block a { color: var(--accent-primary); }
.legal-block a:hover { text-decoration: underline; }
.cookie-table { margin: 1.5rem 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); }
.cookie-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 1rem; }
.cookie-row.header { background: rgba(0, 240, 255, 0.1); }
.cookie-row.header .cookie-cell { font-weight: 600; color: var(--accent-primary); }
.cookie-cell { padding: 1rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.cookie-row:last-child .cookie-cell { border-bottom: none; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.sitemap-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 2rem; }
.sitemap-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.sitemap-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.sitemap-icon.cyan { background: linear-gradient(135deg, #00f0ff, #0099cc); }
.sitemap-icon.purple { background: linear-gradient(135deg, #7b2fff, #5a1fcc); }
.sitemap-icon.pink { background: linear-gradient(135deg, #ff2d92, #cc1a6e); }
.sitemap-icon.gold { background: linear-gradient(135deg, #ffd700, #ff9500); }
.sitemap-header h2 { font-family: 'Syne', sans-serif; font-size: 1.3rem; margin: 0; }
.sitemap-list { list-style: none; }
.sitemap-list li { margin-bottom: 0.5rem; }
.sitemap-list a { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; border-radius: 10px; color: var(--text-primary); text-decoration: none; transition: all 0.3s ease; flex-wrap: wrap; }
.sitemap-list a:hover { background: var(--bg-card-hover); transform: translateX(5px); }
.page-icon { color: var(--accent-primary); font-weight: bold; }
.page-desc { width: 100%; font-size: 0.85rem; color: var(--text-muted); padding-left: 1.8rem; }
.site-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.site-info-item { background: var(--bg-card-hover); border-radius: 10px; padding: 1rem; text-align: center; }
.info-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-value { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--accent-primary); }

/* Footer */
footer { background: var(--bg-secondary); color: var(--text-secondary); padding: 5rem 2rem 2rem; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; }
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
.footer-section h5 { color: var(--text-primary); font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 600; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.8rem; }
.footer-section a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; gap: 0.8rem; transition: all 0.3s ease; }
.footer-section a:hover { color: var(--accent-primary); transform: translateX(5px); }
.footer-section .indicator { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-primary); transition: all 0.3s ease; }
.footer-section a:hover .indicator { box-shadow: 0 0 10px var(--accent-primary); }
.footer-section .indicator.pink { background: var(--accent-tertiary); }
.partners { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.partners img { height: 40px; opacity: 0.6; filter: grayscale(100%) brightness(1.5); transition: all 0.4s ease; }
.partners img:hover { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.1); }
.age-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 45, 146, 0.1); border: 1px solid rgba(255, 45, 146, 0.3); color: var(--accent-tertiary); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; margin-top: 1.5rem; }
.footer-bottom { max-width: 1200px; margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--accent-primary); }

/* Responsive */
@media (max-width: 1100px) {
    .values-grid, .team-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .sitemap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 968px) {
    .content-grid { grid-template-columns: 1fr; }
    .offer-card { grid-template-columns: 1fr; text-align: center; }
    .offer-card:nth-child(even) { direction: ltr; }
    .offer-content h3 { justify-content: center; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .signs-grid { grid-template-columns: repeat(2, 1fr); }
    .resources-grid { grid-template-columns: 1fr; }
    .cookie-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    nav ul { gap: 0.3rem; flex-wrap: wrap; justify-content: center; }
    nav a { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
    .page-hero { padding: 8rem 1.5rem 3rem; }
    .section { padding: 3rem 1.5rem; }
    .content-block { padding: 2rem; }
    .values-grid, .team-grid, .services-grid, .signs-grid { grid-template-columns: 1fr; }
    .tip-item { flex-direction: column; gap: 1rem; }
    .warning-block { flex-direction: column; text-align: center; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-section a { justify-content: center; }
    .partners { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

