* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: hsl(220, 15%, 20%);
    background: 
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
        url('/primary-resources/graphic-assets/background-texture.webp') center/cover fixed no-repeat;
    overflow-x: hidden;
    transition: font-family 0.3s ease;
    position: relative;
    min-height: 100vh;
}

body.fonts-activated {
    font-family: 'Work Sans', 'Oswald', 'Dancing Script', system-ui, -apple-system, sans-serif;
}

main, header, footer {
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

main {
    flex: 1;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    margin-top: 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.04);
}

footer {
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.no-mobile-anim * {
    animation: none !important;
    transition: none !important;
}

:root {
    --primary-hue: 210;
    --secondary-hue: 280;
    --accent-hue: 40;
    
    --color-bg-main: hsl(var(--primary-hue), 25%, 98%);
    --color-bg-card: hsl(var(--primary-hue), 30%, 96%);
    --color-bg-dark: hsl(var(--primary-hue), 35%, 12%);
    --color-text-primary: hsl(var(--primary-hue), 35%, 12%);
    --color-text-secondary: hsl(var(--primary-hue), 20%, 40%);
    --color-accent: hsl(var(--accent-hue), 85%, 55%);
    --color-border: hsl(var(--primary-hue), 20%, 88%);
    
    --max-width-main: 1187px;
    --max-width-narrow: 843px;
    --max-width-wide: 1529px;
    
    --radius-small: 6px;
    --radius-medium: 10px;
    --radius-large: 16px;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, 
input, 
textarea, 
select {
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@font-face {
  font-family: 'Work Sans';
  src: url('/primary-resources/typeface-files/work-sans-vf.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('/primary-resources/typeface-files/oswald-vf.woff2') format('woff2');
  font-weight: 300 400;
  font-display: swap;
}

@font-face {
  font-family: 'Dancing Script';
  src: url('/primary-resources/typeface-files/dancing-script-vf.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
    font-family: 'Line Awesome';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/primary-resources/typeface-files/line-awesome.woff2') format('woff2');
}
.las {
    font-family: 'Line Awesome';
    font-weight: normal;
    font-style: normal;
    font-size: inherit;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.las.la-user-check:before { content: "\f2c1"; }
.las.la-check-circle:before { content: "\f058"; }
.las.la-times-circle:before { content: "\f057"; }
.las.la-cookie-bite:before { content: "\f564"; }
.las.la-info-circle:before { content: "\f05a"; }
.las.la-check:before { content: "\f00c"; }
.las.la-arrow-up:before { content: "\f062"; }
.las.la-arrow-down:before { content: "\f063"; }
.las.la-dice:before { content: "\f522"; }
.las.la-home:before { content: "\f015"; }
.las.la-star:before { content: "\f005"; }
.las.la-gamepad:before { content: "\f11b"; }
.las.la-envelope:before { content: "\f0e0"; }
.las.la-exclamation-triangle:before { content: "\f071"; }
.las.la-flag:before { content: "\f024"; }
.las.la-shield-alt:before { content: "\f3ed"; }
.las.la-users:before { content: "\f0c0"; }
.las.la-trophy:before { content: "\f091"; }
.las.la-play-circle:before { content: "\f144"; }
.las.la-question-circle:before { content: "\f059"; }
.las.la-certificate:before { content: "\f0a3"; }
.las.la-star-half-alt:before { content: "\f5c0"; }
.las.la-arrow-right:before { content: "\f061"; }
.las.la-user-shield:before { content: "\f505"; }
.las.la-comments:before { content: "\f086"; }
.las.la-sync-alt:before { content: "\f2f1"; }
.las.la-balance-scale:before { content: "\f24e"; }
.las.la-bell:before { content: "\f0f3"; }
.las.la-paper-plane:before { content: "\f1d8"; }
.las.la-ban:before { content: "\f05e"; }
.las.la-times:before { content: "\f00d"; }
.las.la-compass:before { content: "\f14e"; }
.las.la-magic:before { content: "\f0d0"; }
.las.la-redo:before { content: "\f01e"; }
.las.la-user-circle:before { content: "\f2bd"; }
.las.la-comment-dots:before { content: "\f4ad"; }
.las.la-handshake:before { content: "\f4c4"; }
.las.la-university:before { content: "\f19c"; }
.las.la-phone-volume:before { content: "\f2a0"; }
.las.la-headset:before { content: "\f590"; }
.las.la-external-link-alt:before { content: "\f35d"; }
.las.la-play:before { content: "\f04b"; }
.las.la-pause:before { content: "\f04c"; }
.las.la-user:before { content: "\f007"; }
.las.la-comment:before { content: "\f27a"; }
.las.la-clock:before { content: "\f017"; }
.las.la-spinner:before { content: "\f110"; }
.las.la-file-contract:before { content: "\f56c"; }

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

.age-verification-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 92%;
    max-width: 520px;
    background: linear-gradient(135deg, hsl(40, 85%, 98%) 0%, hsl(45, 80%, 96%) 100%);
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px hsl(40, 60%, 90%),
        0 8px 24px rgba(210, 170, 50, 0.15);
    border: 2px solid hsl(40, 75%, 85%);
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-modal-content {
    width: 100%;
}

.age-modal-icon {
    font-size: 3.5rem;
    color: hsl(40, 85%, 55%);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.age-modal-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: hsl(220, 35%, 15%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.age-modal-text {
    font-size: 1.1rem;
    color: hsl(220, 20%, 40%);
    margin-bottom: 2.2rem;
    line-height: 1.7;
    padding: 0 1rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.age-btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Work Sans', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.25s ease;
    min-width: 200px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.age-btn-confirm {
    background: linear-gradient(to right, hsl(130, 65%, 55%), hsl(140, 70%, 50%));
    color: white;
}

.age-btn-confirm:hover {
    background: linear-gradient(to right, hsl(130, 70%, 50%), hsl(140, 75%, 45%));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 200, 100, 0.25);
}

.age-btn-deny {
    background: linear-gradient(to right, hsl(0, 75%, 65%), hsl(350, 80%, 60%));
    color: white;
}

.age-btn-deny:hover {
    background: linear-gradient(to right, hsl(0, 80%, 60%), hsl(350, 85%, 55%));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 80, 80, 0.25);
}

.age-modal-note {
    font-size: 0.95rem;
    color: hsl(220, 20%, 50%);
    margin-top: 1.5rem;
}

.age-modal-link {
    color: hsl(210, 85%, 55%);
    text-decoration: underline;
    font-weight: 600;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .age-verification-modal {
        position: fixed;
        top: auto;
        bottom: 30px;
        left: 20px;
        right: 20px;
        transform: none;
        width: auto;
        max-width: none;
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .age-modal-title {
        font-size: 1.8rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .age-btn {
        min-width: 100%;
        padding: 1rem 1.5rem;
    }
    
    @keyframes modalAppear {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(to right, hsl(210, 35%, 15%), hsl(220, 40%, 12%));
    padding: 1.8rem 2.5rem;
    border-top: 3px solid hsl(40, 85%, 55%);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    animation: cookieSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-modal-content {
    width: 100%;
    max-width: var(--max-width-main);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsl(40, 85%, 65%);
}

.cookie-modal-header i {
    font-size: 2rem;
}

.cookie-modal-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin: 0;
}

.cookie-modal-text {
    font-size: 1.05rem;
    color: hsl(210, 20%, 85%);
    line-height: 1.6;
    max-width: 800px;
}

.cookie-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.cookie-details-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: hsl(190, 85%, 65%);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.08);
}

.cookie-details-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: hsl(190, 95%, 75%);
    transform: translateY(-2px);
}

.cookie-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-family: 'Work Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.25s ease;
    min-width: 220px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-accept {
    background: linear-gradient(to right, hsl(40, 85%, 60%), hsl(50, 90%, 55%));
    color: hsl(220, 35%, 12%);
}

.cookie-btn-accept:hover {
    background: linear-gradient(to right, hsl(40, 90%, 55%), hsl(50, 95%, 50%));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 190, 50, 0.3);
}

@keyframes cookieSlideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-consent-modal {
        padding: 1.5rem;
        border-top-width: 2px;
    }
    
    .cookie-modal-content {
        gap: 1rem;
    }
    
    .cookie-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 0.7rem;
    }
    
    .cookie-modal-header i {
        font-size: 1.8rem;
    }
    
    .cookie-modal-title {
        font-size: 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-details-link {
        justify-content: center;
        padding: 0.9rem;
    }
    
    .cookie-btn {
        min-width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

.scroll-navigation {
    position: fixed;
    right: 28px;
    bottom: 140px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-navigation.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(50, 120, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-nav-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 28px rgba(50, 120, 255, 0.4);
    background: linear-gradient(135deg, hsl(210, 90%, 55%), hsl(220, 85%, 50%));
}

.scroll-nav-btn:active {
    transform: scale(0.98);
}

.scroll-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-nav-btn:hover::after {
    opacity: 1;
}

.scroll-bottom-btn {
    background: linear-gradient(135deg, hsl(280, 75%, 65%), hsl(290, 70%, 60%));
    box-shadow: 0 8px 20px rgba(180, 80, 255, 0.3);
}

.scroll-bottom-btn:hover {
    background: linear-gradient(135deg, hsl(280, 80%, 60%), hsl(290, 75%, 55%));
    box-shadow: 0 12px 28px rgba(180, 80, 255, 0.4);
}

.progress-circle {
    position: relative;
    width: 48px;
    height: 48px;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-bg {
    stroke: hsl(210, 20%, 90%);
}

.progress-fill {
    stroke: hsl(40, 85%, 60%);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(220, 35%, 25%);
}

@media (max-width: 768px) {
    .scroll-navigation {
        right: 18px;
        bottom: 120px;
        gap: 1rem;
    }
    
    .scroll-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .progress-circle {
        width: 42px;
        height: 42px;
    }
    
    .progress-text {
        font-size: 0.75rem;
    }
}

.main-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(210, 210, 220, 0.4);
    padding: 1rem 0;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: var(--radius-medium);
    transition: all 0.2s ease;
}

.brand-link:hover {
    background: rgba(210, 220, 240, 0.2);
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 2.5rem;
    color: hsl(40, 85%, 55%);
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 20%);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.85rem;
    color: hsl(220, 20%, 50%);
    margin-top: 0.2rem;
    font-weight: 500;
}

.header-navigation {
    display: flex;
    justify-content: center;
}

.main-nav {
    width: 100%;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-medium);
    font-weight: 600;
    color: hsl(220, 25%, 35%);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 100, 0.1), rgba(255, 230, 150, 0.05));
    border-radius: var(--radius-medium);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: hsl(40, 85%, 50%);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.2rem;
}

.nav-email {
    background: linear-gradient(135deg, rgba(100, 180, 255, 0.1), rgba(150, 200, 255, 0.05));
    border: 1px solid rgba(100, 180, 255, 0.2);
}

.header-warning {
    display: flex;
    justify-content: flex-end;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 230, 100, 0.15), rgba(255, 240, 150, 0.08));
    border-radius: var(--radius-medium);
    border-left: 4px solid hsl(40, 85%, 55%);
    max-width: 280px;
}

.warning-icon {
    font-size: 2rem;
    color: hsl(40, 85%, 55%);
    line-height: 1;
}

.warning-text {
    display: flex;
    flex-direction: column;
}

.warning-text strong {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.2rem;
    color: hsl(220, 35%, 20%);
    margin-bottom: 0.3rem;
}

.warning-text p {
    font-size: 0.9rem;
    color: hsl(220, 20%, 45%);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .header-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
    }
    
    .header-brand {
        grid-column: 1;
        grid-row: 1;
    }
    
    .header-navigation {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-content: flex-start;
    }
    
    .nav-list {
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .header-warning {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }
    
    .header-brand {
        grid-column: 1;
        grid-row: 1;
        justify-content: center;
    }
    
    .header-navigation {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
    }
    
    .header-warning {
        grid-column: 1;
        grid-row: 3;
        justify-content: center;
    }
    
    .warning-content {
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.welcome-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 248, 255, 0.9) 100%);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, hsl(40, 85%, 60%), hsl(210, 85%, 60%), hsl(280, 75%, 65%));
    z-index: 1;
}

.welcome-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsl(40, 85%, 60%), hsl(50, 90%, 55%));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 6px 15px rgba(255, 190, 50, 0.3);
}

.badge-text {
    font-family: 'Oswald', system-ui, sans-serif;
    letter-spacing: 0.5px;
}

.welcome-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: hsl(220, 35%, 18%);
    margin: 0;
}

.title-highlight {
    color: hsl(40, 85%, 55%);
    display: inline-block;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, hsla(40, 85%, 55%, 0.2), transparent);
    z-index: -1;
    border-radius: 4px;
}

.welcome-description {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.7;
    max-width: 600px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(210, 220, 230, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 200, 100, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    color: hsl(210, 85%, 60%);
    line-height: 1;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: hsl(220, 35%, 22%);
    margin-bottom: 0.4rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: hsl(220, 20%, 45%);
    line-height: 1.5;
}

.welcome-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.welcome-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
}

.primary-btn:hover {
    background: linear-gradient(135deg, hsl(210, 90%, 55%), hsl(220, 85%, 50%));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(50, 120, 255, 0.3);
}

.secondary-btn {
    background: transparent;
    color: hsl(220, 35%, 30%);
    border: 2px solid hsl(220, 25%, 80%);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: hsl(40, 85%, 55%);
    color: hsl(40, 85%, 50%);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 190, 50, 0.2);
}

.welcome-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    background: white;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.visual-container:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.visual-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: hsl(40, 85%, 55%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.overlay-badge i {
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-title {
        font-size: 2.8rem;
    }
    
    .visual-container {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
    
    .visual-container:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 0 4rem;
    }
    
    .welcome-container {
        padding: 0 1.5rem;
    }
    
    .welcome-title {
        font-size: 2.3rem;
    }
    
    .welcome-description {
        font-size: 1.1rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .welcome-actions {
        flex-direction: column;
    }
    
    .welcome-btn {
        min-width: 100%;
        justify-content: center;
    }
    
    .overlay-badge {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(40, 85, 200, 0.2), transparent);
}

.games-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsla(40, 85%, 60%, 0.1), hsla(210, 85%, 60%, 0.1));
    color: hsl(210, 85%, 50%);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(100, 180, 255, 0.2);
}

.section-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-accent {
    color: hsl(40, 85%, 55%);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(40, 85%, 55%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
}

.game-card {
    perspective: 1000px;
}

.game-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(210, 220, 230, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover .game-card-inner {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 200, 100, 0.3);
}

.game-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.overlay-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(220, 35%, 25%);
    letter-spacing: 0.5px;
}

.game-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: hsl(40, 85%, 60%);
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 600;
    color: hsl(220, 35%, 30%);
    font-size: 0.95rem;
}

.game-category {
    background: hsla(210, 85%, 60%, 0.1);
    color: hsl(210, 85%, 50%);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 20%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.game-footer {
    margin-top: auto;
}

.game-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(50, 120, 255, 0.25);
}

.game-link:hover {
    background: linear-gradient(135deg, hsl(210, 90%, 55%), hsl(220, 85%, 50%));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(50, 120, 255, 0.35);
}

.game-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.game-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .games-container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-image {
        height: 200px;
    }
}

.advantages-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, hsla(210, 85%, 60%, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.advantages-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.advantages-highlight {
    color: hsl(210, 85%, 55%);
    position: relative;
    display: inline-block;
}

.advantages-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, hsla(210, 85%, 55%, 0.15), transparent);
    z-index: -1;
    border-radius: 4px;
}

.advantages-intro {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(210, 220, 230, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(100, 180, 255, 0.3);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.advantage-number {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: hsla(210, 85%, 60%, 0.08);
    line-height: 1;
    position: absolute;
    top: -1rem;
    right: 0.5rem;
    z-index: 0;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-number {
    color: hsla(210, 85%, 60%, 0.12);
    transform: scale(1.05);
}

.advantage-text {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.advantage-card-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(220, 35%, 22%);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.3;
}

.advantage-card-title i {
    color: hsl(210, 85%, 60%);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.advantage-card-description {
    color: hsl(220, 25%, 45%);
    line-height: 1.6;
    font-size: 1.05rem;
}

.advantage-decoration {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover .advantage-decoration {
    opacity: 0.3;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: hsl(210, 85%, 60%);
    border-radius: 50%;
}

.decoration-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, hsl(210, 85%, 60%), transparent);
}

@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantages-container {
        padding: 0 1.5rem;
    }
    
    .advantages-title {
        font-size: 2.3rem;
    }
    
    .advantages-intro {
        font-size: 1.1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-number {
        font-size: 3.5rem;
    }
}

.subscribe-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(210, 35%, 96%), hsl(220, 30%, 94%));
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(100, 180, 255, 0.3), transparent);
}

.subscribe-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.subscribe-content {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 220, 230, 0.4);
    position: relative;
    overflow: hidden;
}

.subscribe-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, hsl(40, 85%, 60%), hsl(210, 85%, 60%), hsl(280, 75%, 65%));
}

.subscribe-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(210, 85%, 60%, 0.1), hsla(220, 80%, 55%, 0.1));
    color: hsl(210, 85%, 55%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(100, 180, 255, 0.2);
}

.subscribe-badge i {
    font-size: 1.2rem;
}

.subscribe-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.subscribe-accent {
    color: hsl(40, 85%, 55%);
    position: relative;
    display: inline-block;
}

.subscribe-accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(40, 85%, 55%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.subscribe-description {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-wrapper {
    flex-grow: 1;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid hsl(210, 20%, 90%);
    border-radius: 12px;
    background: white;
    color: hsl(220, 35%, 25%);
    transition: all 0.3s ease;
    font-family: 'Work Sans', system-ui, sans-serif;
}

.email-input:focus {
    outline: none;
    border-color: hsl(210, 85%, 60%);
    box-shadow: 0 0 0 4px hsla(210, 85%, 60%, 0.15);
    scroll-margin-top: 100px;
}

.email-input::placeholder {
    color: hsl(220, 20%, 70%);
}

*:focus {
    outline: 2px solid hsl(210, 85%, 60%);
    outline-offset: 2px;
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsl(220, 20%, 60%);
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.email-input:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.email-input:focus-visible {
    outline: 2px solid hsl(210, 85%, 60%);
    outline-offset: 2px;
}

.email-input:focus + .input-hint {
    opacity: 1;
    transform: translateY(0);
}

.input-hint i {
    font-size: 0.9rem;
    color: hsl(210, 85%, 60%);
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(50, 120, 255, 0.25);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(210, 90%, 55%), hsl(220, 85%, 50%));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(50, 120, 255, 0.35);
}

.form-note {
    font-size: 0.95rem;
    color: hsl(220, 20%, 55%);
    text-align: center;
    line-height: 1.5;
}

.subscribed-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, hsla(130, 65%, 55%, 0.05), hsla(140, 70%, 50%, 0.03));
    border-radius: 18px;
    border: 2px solid hsla(130, 65%, 55%, 0.15);
    animation: fadeIn 0.5s ease;
}

.message-icon {
    font-size: 4rem;
    color: hsl(130, 65%, 55%);
    margin-bottom: 1.5rem;
}

.message-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: hsl(220, 35%, 20%);
    margin-bottom: 1rem;
}

.message-text {
    font-size: 1.1rem;
    color: hsl(220, 25%, 40%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.subscribed-email {
    font-weight: 600;
    color: hsl(210, 85%, 50%);
    background: hsla(210, 85%, 60%, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.message-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.message-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.secondary-btn {
    background: white;
    color: hsl(220, 35%, 30%);
    border: 2px solid hsl(220, 25%, 80%);
}

.secondary-btn:hover {
    background: hsl(210, 25%, 98%);
    border-color: hsl(210, 85%, 60%);
    color: hsl(210, 85%, 55%);
    transform: translateY(-3px);
}

.primary-btn {
    background: linear-gradient(135deg, hsl(0, 75%, 65%), hsl(350, 80%, 60%));
    color: white;
    box-shadow: 0 6px 15px rgba(255, 80, 80, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, hsl(0, 80%, 60%), hsl(350, 85%, 55%));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 80, 80, 0.3);
}

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(210, 220, 230, 0.4);
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    font-size: 4.5rem;
    color: hsl(130, 65%, 55%);
    line-height: 1;
}

.success-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: hsl(220, 35%, 20%);
    line-height: 1.2;
}

.success-text {
    font-size: 1.1rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
}

.success-email {
    font-weight: 600;
    color: hsl(210, 85%, 50%);
    background: hsla(210, 85%, 60%, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.close-success-btn {
    margin-top: 1rem;
    padding: 0.9rem 2.2rem;
    background: hsl(210, 25%, 96%);
    color: hsl(220, 35%, 35%);
    border: 2px solid hsl(210, 20%, 88%);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.close-success-btn:hover {
    background: hsl(210, 30%, 92%);
    border-color: hsl(210, 85%, 60%);
    color: hsl(210, 85%, 50%);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .subscribe-section {
        padding: 3rem 0;
    }
    
    .subscribe-container {
        padding: 0 1.5rem;
    }
    
    .subscribe-content {
        padding: 2.5rem 1.5rem;
    }
    
    .subscribe-title {
        font-size: 2.2rem;
    }
    
    .subscribe-description {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .message-actions {
        flex-direction: column;
    }
    
    .message-btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-modal {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .success-title {
        font-size: 1.8rem;
    }

    .subscribed-message {
        padding: 3rem 0.2rem;
    }
}

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    padding-right: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(280, 75%, 65%, 0.1), hsla(290, 70%, 60%, 0.1));
    color: hsl(280, 75%, 60%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(180, 80, 255, 0.2);
}

.about-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-title-accent {
    color: hsl(280, 75%, 60%);
    display: block;
    position: relative;
}

.about-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(280, 75%, 60%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-intro {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.7;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(210, 220, 230, 0.3);
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.detail-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(210, 220, 230, 0.3);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(180, 80, 255, 0.2);
}

.detail-item h3 {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: hsl(220, 35%, 25%);
    margin-bottom: 0.8rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.5;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0.2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(210, 220, 230, 0.3);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: hsl(280, 75%, 60%);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(220, 25%, 50%);
    font-weight: 500;
}

.about-animation-block {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, hsl(210, 25%, 96%), hsl(220, 30%, 94%));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-element {
    position: absolute;
    width: 200px;
    height: 200px;
}

#anim-elem-1 {
    top: 20%;
    left: 20%;
    transform-origin: center;
}

#anim-elem-2 {
    bottom: 20%;
    right: 20%;
    transform-origin: center;
}

.anim-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(280, 75%, 65%), hsl(290, 70%, 60%));
    opacity: 0.7;
    filter: blur(10px);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    animation: floatShape1 4s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    animation: floatShape2 3.5s ease-in-out infinite 0.5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, hsl(40, 85%, 60%), hsl(50, 90%, 55%));
    animation: floatShape3 5s ease-in-out infinite 1s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    top: 0;
    left: 50px;
    background: linear-gradient(135deg, hsl(130, 65%, 55%), hsl(140, 70%, 50%));
    animation: floatShape4 4s ease-in-out infinite;
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 0;
    right: 50px;
    background: linear-gradient(135deg, hsl(280, 75%, 65%), hsl(290, 70%, 60%));
    animation: floatShape5 4.5s ease-in-out infinite 0.7s;
}

.animation-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.anim-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.anim-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(50, 120, 255, 0.3);
}

.animation-label {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: hsl(280, 75%, 60%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(180deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 15px) scale(1.2); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 0) rotate(90deg); }
    50% { transform: translate(0, 30px) rotate(180deg); }
    75% { transform: translate(-30px, 0) rotate(270deg); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes floatShape5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(120deg); }
    66% { transform: translate(-15px, 20px) rotate(240deg); }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-block {
        padding-right: 0;
    }
    
    .about-animation-block {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .animation-controls {
        padding: 0.8rem;
    }
    
    .anim-control-btn {
        width: 45px;
        height: 45px;
    }
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    position: relative;
}

.faq-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(130, 65%, 55%, 0.1), hsla(140, 70%, 50%, 0.1));
    color: hsl(130, 65%, 50%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 200, 100, 0.2);
}

.faq-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.faq-title-accent {
    color: hsl(130, 65%, 50%);
    position: relative;
    display: inline-block;
}

.faq-title-accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(130, 65%, 50%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(210, 220, 230, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 200, 100, 0.2);
}

.faq-question {
    display: flex;
    gap: 1.5rem;
}

.question-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsla(130, 65%, 55%, 0.1), hsla(140, 70%, 50%, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: hsl(130, 65%, 50%);
}

.question-content {
    flex-grow: 1;
}

.question-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(220, 35%, 22%);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.question-answer p {
    font-size: 1.05rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .question-icon {
        align-self: flex-start;
    }
}

.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
    position: relative;
}

.reviews-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(40, 85%, 60%, 0.1), hsla(50, 90%, 55%, 0.1));
    color: hsl(40, 85%, 55%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 190, 50, 0.2);
}

.reviews-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.reviews-title-accent {
    color: hsl(40, 85%, 55%);
    position: relative;
    display: inline-block;
}

.reviews-title-accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(40, 85%, 55%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2.5rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(210, 220, 230, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 190, 50, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(210, 220, 230, 0.3);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsla(40, 85%, 60%, 0.1), hsla(50, 90%, 55%, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: hsl(40, 85%, 55%);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: hsl(220, 35%, 22%);
    margin-bottom: 0.3rem;
}

.reviewer-location {
    font-size: 0.9rem;
    color: hsl(220, 25%, 50%);
    font-weight: 500;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: hsl(40, 85%, 60%);
    font-size: 1.1rem;
}

.rating-score {
    font-weight: 600;
    color: hsl(220, 35%, 30%);
    font-size: 1.2rem;
    background: hsla(40, 85%, 60%, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.review-content p {
    font-size: 1.05rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    quotes: "“" "”" "‘" "’";
}

.review-content p::before {
    content: open-quote;
    font-size: 2.5rem;
    line-height: 0;
    color: hsla(40, 85%, 60%, 0.3);
    margin-right: 0.3rem;
    vertical-align: -0.5rem;
}

.review-content p::after {
    content: close-quote;
    font-size: 2.5rem;
    line-height: 0;
    color: hsla(40, 85%, 60%, 0.3);
    margin-left: 0.3rem;
    vertical-align: -0.5rem;
}

.review-footer {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(210, 220, 230, 0.3);
    text-align: right;
}

.review-date {
    font-size: 0.9rem;
    color: hsl(220, 20%, 60%);
    font-style: italic;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-container {
        padding: 0 1.5rem;
    }
    
    .reviews-title {
        font-size: 2.2rem;
    }
    
    .reviews-subtitle {
        font-size: 1.1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .review-rating {
        align-self: flex-start;
        align-items: flex-start;
    }
}

.responsible-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(210, 35%, 96%), hsl(220, 30%, 94%));
    position: relative;
    overflow: hidden;
}

.responsible-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(100, 180, 255, 0.3), transparent);
}

.responsible-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.responsible-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 220, 230, 0.4);
    position: relative;
    overflow: hidden;
}

.responsible-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
}

.responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(210, 85%, 60%, 0.1), hsla(220, 80%, 55%, 0.1));
    color: hsl(210, 85%, 55%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(100, 180, 255, 0.2);
}

.responsible-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.responsible-title-accent {
    color: hsl(210, 85%, 55%);
    display: block;
    position: relative;
}

.responsible-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(210, 85%, 55%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.responsible-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.responsible-text p {
    font-size: 1.1rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.7;
}

.org-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(100, 180, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(100, 180, 255, 0.1);
}

.org-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: hsl(210, 85%, 50%);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.org-link:hover {
    background: hsl(210, 25%, 98%);
    color: hsl(210, 85%, 45%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(100, 180, 255, 0.2);
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsla(40, 85%, 60%, 0.1), hsla(50, 90%, 55%, 0.05));
    border-radius: 12px;
    border-left: 4px solid hsl(40, 85%, 55%);
    margin-top: 1.5rem;
}

.age-icon {
    font-size: 2rem;
    color: hsl(40, 85%, 55%);
    line-height: 1;
}

.age-text {
    flex-grow: 1;
}

.age-text strong {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.3rem;
    color: hsl(220, 35%, 25%);
    display: block;
    margin-bottom: 0.5rem;
}

.age-text p {
    font-size: 1rem;
    color: hsl(220, 25%, 45%);
    margin: 0;
}

.responsible-partners {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 220, 230, 0.4);
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(210, 220, 230, 0.3);
}

.partners-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: hsl(220, 35%, 22%);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partners-title i {
    color: hsl(210, 85%, 60%);
    font-size: 1.8rem;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: hsl(210, 25%, 98%);
    border-radius: 16px;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: hsl(210, 85%, 60%);
    box-shadow: 0 15px 35px rgba(100, 180, 255, 0.15);
    background: white;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsla(210, 85%, 60%, 0.1), hsla(220, 80%, 55%, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: hsl(210, 85%, 60%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    background: linear-gradient(135deg, hsl(210, 85%, 60%), hsl(220, 80%, 55%));
    color: white;
    transform: scale(1.1);
}

.partner-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-name {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: hsl(220, 35%, 25%);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.partner-desc {
    font-size: 0.95rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.partner-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(210, 85%, 55%);
    text-decoration: none;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(100, 180, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-link {
    background: hsl(210, 85%, 60%);
    color: white;
}

.age-display {
    text-align: center;
    padding: 1.7rem;
    background: linear-gradient(135deg, hsla(40, 85%, 60%, 0.1), hsla(50, 90%, 55%, 0.05));
    border-radius: 16px;
    border: 2px solid hsl(40, 85%, 55%);
}

.age-number {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: hsl(40, 85%, 55%);
    line-height: 1;
    margin-bottom: 1rem;
}

.age-message {
    font-size: 1.1rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .responsible-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .responsible-section {
        padding: 3rem 0;
    }
    
    .responsible-container {
        padding: 0 1.5rem;
    }
    
    .responsible-content, .responsible-partners {
        padding: 2rem 1.5rem;
    }
    
    .responsible-title, .partners-title {
        font-size: 2rem;
    }
    
    .org-links {
        flex-direction: column;
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .age-number {
        font-size: 3rem;
    }
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 255, 0.92) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(40, 85, 200, 0.2), transparent);
}

.contact-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, hsla(280, 75%, 65%, 0.1), hsla(290, 70%, 60%, 0.1));
    color: hsl(280, 75%, 60%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(180, 80, 255, 0.2);
}

.contact-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: hsl(220, 35%, 18%);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-title-accent {
    color: hsl(280, 75%, 60%);
    position: relative;
    display: inline-block;
}

.contact-title-accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsla(280, 75%, 60%, 0.15), transparent);
    z-index: -1;
    border-radius: 3px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 220, 230, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, hsl(280, 75%, 65%), hsl(290, 70%, 60%));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    color: hsl(220, 35%, 30%);
    font-size: 1.05rem;
}

.form-label i {
    color: hsl(280, 75%, 60%);
    font-size: 1.2rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid hsl(210, 20%, 90%);
    border-radius: 12px;
    background: white;
    color: hsl(220, 35%, 25%);
    transition: all 0.3s ease;
    font-family: 'Work Sans', system-ui, sans-serif;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: hsl(280, 75%, 60%);
    box-shadow: 0 0 0 4px hsla(280, 75%, 60%, 0.15);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: hsl(220, 20%, 70%);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsl(220, 20%, 60%);
    padding-left: 0.5rem;
}

.input-hint i {
    font-size: 0.9rem;
    color: hsl(280, 75%, 60%);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    max-height: 400px;
}

.textarea-counter {
    text-align: right;
    font-size: 0.9rem;
    color: hsl(220, 20%, 60%);
    padding-right: 0.5rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(180, 80, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(180, 80, 255, 0.1);
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.3rem;
    accent-color: hsl(280, 75%, 60%);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 1rem;
    color: hsl(220, 25%, 45%);
    line-height: 1.6;
    font-weight: normal;
}

.policy-link {
    color: hsl(280, 75%, 60%);
    text-decoration: underline;
    font-weight: 600;
}

.policy-link:hover {
    color: hsl(280, 75%, 50%);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, hsl(280, 75%, 65%), hsl(290, 70%, 60%));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(180, 80, 255, 0.25);
}

.submit-btn:hover {
    background: linear-gradient(135deg, hsl(280, 80%, 60%), hsl(290, 75%, 55%));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(180, 80, 255, 0.35);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: hsl(220, 25%, 50%);
    text-align: center;
}

.form-note i {
    color: hsl(280, 75%, 60%);
}

.contact-success-modal-main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(210, 220, 230, 0.4);
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    font-size: 4.5rem;
    color: hsl(130, 65%, 55%);
    line-height: 1;
}

.success-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: hsl(220, 35%, 20%);
    line-height: 1.2;
}

.success-text {
    font-size: 1.1rem;
    color: hsl(220, 25%, 40%);
    line-height: 1.6;
}

.success-email {
    font-weight: 600;
    color: hsl(280, 75%, 60%);
    background: hsla(280, 75%, 60%, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.close-success-btn {
    margin-top: 1rem;
    padding: 0.9rem 2.2rem;
    background: hsl(210, 25%, 96%);
    color: hsl(220, 35%, 35%);
    border: 2px solid hsl(210, 20%, 88%);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.close-success-btn:hover {
    background: hsl(210, 30%, 92%);
    border-color: hsl(280, 75%, 60%);
    color: hsl(280, 75%, 50%);
    transform: translateY(-2px);
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-success-modal {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .success-title {
        font-size: 1.8rem;
    }
}

.main-footer {
    background: linear-gradient(135deg, hsl(210, 35%, 12%), hsl(220, 40%, 10%));
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(40, 85%, 60%, 0.3), transparent);
}

.footer-container {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(40, 85%, 60%), hsl(50, 90%, 55%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: hsl(210, 35%, 12%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-name {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1;
}

.site-tagline {
    font-size: 0.95rem;
    color: hsla(210, 20%, 85%, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-nav {
    width: 100%;
    max-width: 800px;
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid hsla(210, 20%, 85%, 0.1);
}

.footer-nav-item {
    display: flex;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: hsla(210, 20%, 85%, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: hsl(40, 85%, 65%);
    background: hsla(40, 85%, 60%, 0.1);
    transform: translateY(-2px);
}

.footer-nav-link i {
    font-size: 1.1rem;
    color: hsl(40, 85%, 65%);
}

.footer-info {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid hsla(210, 20%, 85%, 0.1);
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright-text {
    font-size: 0.95rem;
    color: hsla(210, 20%, 85%, 0.7);
    margin: 0;
}

.site-license {
    font-size: 0.85rem;
    color: hsla(210, 20%, 85%, 0.5);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-nav-list {
        gap: 1.2rem;
        padding: 1.2rem 0;
    }
    
    .footer-nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .site-name {
        font-size: 1.8rem;
    }
}