:root {
    --fs-deep-ocean: #0d2847;
    --fs-ocean-blue: #1a3f6b;
    --fs-bright-yellow: #ffd700;
    --fs-aqua-cyan: #40d8e8;
    --fs-coral-orange: #ff7a4d;
    --fs-sea-green: #5fc96d;

    --fs-deep-ocean-hover: rgba(13, 40, 71, 0.85);
    --fs-ocean-blue-hover: rgba(26, 63, 107, 0.85);
    --fs-bright-yellow-hover: rgba(255, 215, 0, 0.85);
    --fs-aqua-cyan-hover: rgba(64, 216, 232, 0.85);
    --fs-coral-orange-hover: rgba(255, 122, 77, 0.85);
    --fs-sea-green-hover: rgba(95, 201, 109, 0.85);

    --fs-font-heading: 'Righteous', sans-serif;
    --fs-font-body: 'Outfit', sans-serif;

    --fs-weight-normal: 400;
    --fs-weight-bold: 600;
    --fs-weight-heading-bold: 700;
}

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

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

body {
    font-family: var(--fs-font-body);
    font-weight: var(--fs-weight-normal);
    color: #e0f2ff;
    background: var(--fs-deep-ocean);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fs-font-heading);
    line-height: 1.2;
}

h1 {
    font-size: 52px;
    font-weight: var(--fs-weight-heading-bold);
    color: var(--fs-bright-yellow);
    margin-bottom: 28px;
}

h2 {
    font-size: 42px;
    font-weight: var(--fs-weight-heading-bold);
    color: var(--fs-aqua-cyan);
    margin-bottom: 24px;
}

h3 {
    font-size: 32px;
    font-weight: var(--fs-weight-normal);
    color: #ffffff;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-weight: var(--fs-weight-normal);
    color: var(--fs-aqua-cyan);
    margin-bottom: 16px;
}

h5 {
    font-size: 20px;
    font-weight: var(--fs-weight-bold);
    color: #ffffff;
    margin-bottom: 14px;
}

h6 {
    font-size: 18px;
    font-weight: var(--fs-weight-bold);
    color: #e0f2ff;
    margin-bottom: 12px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0f2ff;
}

.fs-text-intro {
    font-size: 22px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 24px;
}

.fs-text-small {
    font-size: 16px;
    line-height: 1.6;
}

.fs-text-tiny {
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: var(--fs-aqua-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--fs-bright-yellow);
}

.fs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fs-container--wide {
    max-width: 1400px;
}

.fs-container--narrow {
    max-width: 900px;
}

.fs-section {
    padding: 100px 0;
}

.fs-section--compact {
    padding: 70px 0;
}

.fs-section--spacious {
    padding: 120px 0;
}

.fs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fs-font-heading);
    font-weight: var(--fs-weight-normal);
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fs-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fs-button:hover::before {
    width: 400px;
    height: 400px;
}

.fs-button--primary {
    background: var(--fs-bright-yellow);
    color: var(--fs-deep-ocean);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--fs-bright-yellow);
}

.fs-button--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    background: var(--fs-coral-orange);
    border-color: var(--fs-coral-orange);
}

.fs-button--primary:active {
    transform: translateY(-1px) scale(0.98);
}

.fs-button--secondary {
    background: var(--fs-aqua-cyan);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(64, 216, 232, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--fs-aqua-cyan);
}

.fs-button--secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(64, 216, 232, 0.6), inset 0 2px 8px rgba(255, 255, 255, 0.3);
    background: var(--fs-sea-green);
    border-color: var(--fs-sea-green);
}

.fs-button--outline {
    background: transparent;
    border: 3px solid var(--fs-bright-yellow);
    color: var(--fs-bright-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
}

.fs-button--outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.fs-button--outline:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--fs-bright-yellow);
    color: var(--fs-deep-ocean);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    border-color: var(--fs-bright-yellow);
}

.fs-button--outline:hover::after {
    left: 100%;
}

.fs-button--large {
    padding: 20px 35px;
    font-size: 20px;
}

.fs-button--small {
    padding: 12px 30px;
    font-size: 16px;
}

.fs-card {
    background: linear-gradient(135deg, var(--fs-ocean-blue), rgba(26, 63, 107, 0.7));
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 216, 232, 0.25);
    transition: all 0.3s ease;
}

.fs-card:hover {
    transform: translateY(-6px);
    border-color: var(--fs-aqua-cyan);
    box-shadow: 0 12px 35px rgba(64, 216, 232, 0.35);
}

.fs-card--compact {
    padding: 28px;
    border-radius: 20px;
}

.fs-card--spacious {
    padding: 44px;
    border-radius: 28px;
}

.fs-grid {
    display: grid;
    gap: 32px;
}

.fs-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.fs-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.fs-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.fs-flex {
    display: flex;
    gap: 24px;
}

.fs-flex--center {
    align-items: center;
    justify-content: center;
}

.fs-flex--between {
    align-items: center;
    justify-content: space-between;
}

.fs-flex--column {
    flex-direction: column;
}

.fs-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fs-aqua-cyan), transparent);
    margin: 60px 0;
    border: none;
}

.fs-divider--compact {
    margin: 40px 0;
}

.fs-accent-text {
    color: var(--fs-bright-yellow);
    font-weight: var(--fs-weight-bold);
}

.fs-highlight-text {
    color: var(--fs-aqua-cyan);
}

ul.fs-list {
    list-style: none;
    padding-left: 0;
}

ul.fs-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

ul.fs-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--fs-aqua-cyan);
    font-size: 14px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    .fs-grid--three,
    .fs-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 17px;
    }

    .fs-text-intro {
        font-size: 19px;
    }

    .fs-container {
        padding: 0 20px;
    }

    .fs-section {
        padding: 70px 0;
    }

    .fs-section--compact {
        padding: 50px 0;
    }

    .fs-button {
        padding: 14px 32px;
        font-size: 17px;
    }

    .fs-card {
        padding: 28px;
        border-radius: 20px;
    }

    .fs-grid--two,
    .fs-grid--three,
    .fs-grid--four {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fs-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    .fs-card {
        padding: 24px;
    }

    .fs-button {
        width: 100%;
    }
}

.fs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.fs-header.fs-header--scrolled {
    background: rgba(13, 40, 71, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.fs-header.fs-header--scrolled .fs-header__mobile-menu.fs-header__mobile-menu--active {
    transform: translateY(0);
    opacity: 1;
    top: 58px;
}
.fs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fs-header__logo {
    text-decoration: none;
}

.fs-header__logo-text {
    font-family: var(--fs-font-heading);
    font-size: 28px;
    font-weight: var(--fs-weight-heading-bold);
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: inline-block;
}

.fs-header__logo:hover .fs-header__logo-text {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.fs-header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.fs-header__link {
    font-family: var(--fs-font-body);
    font-size: 17px;
    font-weight: var(--fs-weight-normal);
    color: #e0f2ff;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    overflow: hidden;
    border-radius: 20px;
}

.fs-header__link-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.fs-header__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, var(--fs-aqua-cyan), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.fs-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fs-bright-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fs-header__link:hover::before {
    left: 100%;
}

.fs-header__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.fs-header__link:hover .fs-header__link-text {
    color: var(--fs-bright-yellow);
}

.fs-button--header {
    padding: 12px 28px;
    font-size: 16px;
}

.fs-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.fs-header__burger span {
    width: 28px;
    height: 3px;
    background: var(--fs-bright-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.fs-header__burger.fs-header__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 4px);
}

.fs-header__burger.fs-header__burger--active span:nth-child(2) {
    opacity: 0;
}

.fs-header__burger.fs-header__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -4px);
}

.fs-header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
}

.fs-header__mobile-menu.fs-header__mobile-menu--active {
    transform: translateY(0);
    opacity: 1;
    top: 80px;
}

.fs-header__mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
}

.fs-header__mobile-link {
    font-family: var(--fs-font-body);
    font-size: 20px;
    font-weight: var(--fs-weight-normal);
    color: #e0f2ff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-header__mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--fs-aqua-cyan), var(--fs-bright-yellow));
    opacity: 0.15;
    transition: left 0.4s ease;
}

.fs-header__mobile-link:hover {
    color: var(--fs-bright-yellow);
    transform: translateX(8px);
}

.fs-header__mobile-link:hover::before {
    left: 0;
}

.fs-header__mobile-nav .fs-button {
    margin-top: 16px;
}
/**/
.fs-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fs-age-gate--hidden {
    display: none;
}

.fs-age-gate__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 46, 0.98);
    backdrop-filter: blur(12px);
}

.fs-age-gate__content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.95), rgba(13, 40, 71, 0.95));
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 550px;
    width: 100%;
    border: 3px solid var(--fs-bright-yellow);
    box-shadow: 0 20px 80px rgba(255, 215, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: ageGateAppear 0.6s ease;
}

@keyframes ageGateAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fs-age-gate__badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-coral-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
    border: 4px solid var(--fs-deep-ocean);
}

.fs-age-gate__badge-icon {
    width: 90px;
    height: 90px;
}

.fs-age-gate__title {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-age-gate__text {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 1.7;
    color: #b8d4e8;
}

.fs-age-gate__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.fs-age-gate__buttons .fs-button {
    width: 100%;
}

.fs-age-gate__disclaimer {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6b8399;
}
/**/
.fs-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fs-deep-ocean) 0%, #0a1e3d 50%, var(--fs-ocean-blue) 100%);
    padding: 140px 0 80px;
}

.fs-hero__bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.fs-bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(64, 216, 232, 0.3), rgba(64, 216, 232, 0.1));
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
    opacity: 0;
}

.fs-bubble:nth-child(1) {
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.fs-bubble:nth-child(2) {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
    animation-duration: 16s;
}

.fs-bubble:nth-child(3) {
    left: 45%;
    width: 50px;
    height: 50px;
    animation-delay: 4s;
    animation-duration: 14s;
}

.fs-bubble:nth-child(4) {
    left: 65%;
    width: 35px;
    height: 35px;
    animation-delay: 1s;
    animation-duration: 13s;
}

.fs-bubble:nth-child(5) {
    left: 80%;
    width: 45px;
    height: 45px;
    animation-delay: 3s;
    animation-duration: 15s;
}

.fs-bubble:nth-child(6) {
    left: 90%;
    width: 25px;
    height: 25px;
    animation-delay: 5s;
    animation-duration: 11s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(30px) scale(1.1);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }
}

.fs-hero__waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    overflow: hidden;
}

.fs-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    fill: rgba(26, 63, 107, 0.4);
    animation: wave 20s linear infinite;
}

.fs-hero__wave--second {
    animation: wave 25s linear infinite reverse;
    fill: rgba(13, 40, 71, 0.3);
    height: 100px;
    animation-delay: -5s;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.fs-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.fs-hero__text {
    animation: fadeInUp 1s ease-out;
}

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

.fs-hero__title {
    margin-bottom: 20px;
    line-height: 1.1;
}

.fs-hero__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--fs-aqua-cyan), var(--fs-sea-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.fs-hero__subtitle {
    color: var(--fs-aqua-cyan);
    margin-bottom: 40px;
    font-weight: var(--fs-weight-normal);
    line-height: 1.4;
}

.fs-hero__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.fs-button__icon {
    display: inline-flex;
    margin-right: 8px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fs-button__icon-img {
    width: 35px;
    height: 35px;
    filter: brightness(0);
}

.fs-button__arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.fs-button--outline:hover .fs-button__arrow {
    transform: translateX(5px);
}

.fs-hero__visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fs-hero__image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.fs-hero__image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(64, 216, 232, 0.3));
    position: relative;
    z-index: 2;
}

.fs-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(64, 216, 232, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .fs-hero__content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .fs-header__nav {
        display: none;
    }

    .fs-header__burger {
        display: flex;
    }

    .fs-button--header {
        display: none;
    }

    .fs-hero {
        padding: 100px 0 60px;
    }

    .fs-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fs-hero__text {
        text-align: center;
    }

    .fs-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .fs-hero__actions .fs-button {
        width: 100%;
        justify-content: center;
    }

    .fs-hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .fs-header__logo-text {
        font-size: 22px;
    }

    .fs-hero__title {
        font-size: 32px;
    }

    .fs-hero__subtitle {
        font-size: 20px;
    }
}
/**/
.fs-realm {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fs-deep-ocean) 0%, var(--fs-ocean-blue) 100%);
}

.fs-realm__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fs-realm__card {
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.5), rgba(13, 40, 71, 0.8));
    border-radius: 24px;
    padding: 48px 28px;
    text-align: center;
    border: 2px solid rgba(64, 216, 232, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fs-realm__card:hover {
    transform: translateY(-8px);
    border-color: var(--fs-aqua-cyan);
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.7), rgba(13, 40, 71, 0.9));
}

.fs-realm__icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-aqua-cyan), var(--fs-bright-yellow));
    border-radius: 50%;
    padding: 3px;
}

.fs-realm__icon {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 8px rgba(64, 216, 232, 0.4));
    transition: transform 0.3s ease;
}

.fs-realm__card:hover .fs-realm__icon {
    transform: scale(1.1);
}

.fs-realm__title {
    color: #ffffff;
    margin-bottom: 0;
}

.fs-journey {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--fs-ocean-blue) 0%, var(--fs-deep-ocean) 100%);
    position: relative;
}

.fs-journey__heading {
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-journey__book {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.fs-journey__page {
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.6), rgba(13, 40, 71, 0.4));
    border-radius: 24px;
    padding: 44px 36px;
    position: relative;
    border: 2px solid rgba(64, 216, 232, 0.3);
    transition: all 0.4s ease;
}

.fs-journey__page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(64, 216, 232, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.fs-journey__page:hover {
    transform: scale(1.03);
    border-color: var(--fs-aqua-cyan);
    box-shadow: 0 12px 40px rgba(64, 216, 232, 0.3);
}

.fs-journey__page:hover::before {
    opacity: 1;
}

.fs-journey__page--left {
    text-align: right;
}

.fs-journey__page--left .fs-journey__illustration {
    margin-left: auto;
}

.fs-journey__page--right {
    text-align: left;
}

.fs-journey__page--right .fs-journey__illustration {
    margin-right: auto;
}

.fs-journey__page-number {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-coral-orange));
    border-radius: 20px;
    font-family: var(--fs-font-heading);
    font-size: 16px;
    font-weight: var(--fs-weight-bold);
    color: var(--fs-deep-ocean);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.fs-journey__illustration {
    width: 200px;
    height: 200px;
    margin-bottom: 28px;
    position: relative;
}

.fs-journey__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--fs-aqua-cyan);
    box-shadow: 0 8px 24px rgba(64, 216, 232, 0.3);
}

.fs-journey__page-title {
    margin-bottom: 12px;
    color: var(--fs-bright-yellow);
}

.fs-journey__page-text {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #b8d4e8;
}

@media (max-width: 1024px) {
    .fs-realm__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-journey__book {
        gap: 32px 40px;
    }

    .fs-journey__page {
        padding: 36px 28px;
    }

    .fs-journey__illustration {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .fs-realm__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fs-realm__card {
        padding: 40px 24px;
    }

    .fs-journey {
        padding: 80px 0;
    }

    .fs-journey__heading {
        margin-bottom: 60px;
    }

    .fs-journey__book {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fs-journey__page {
        text-align: center;
    }

    .fs-journey__page--left,
    .fs-journey__page--right {
        text-align: center;
    }

    .fs-journey__page--left .fs-journey__illustration,
    .fs-journey__page--right .fs-journey__illustration {
        margin: 0 auto 28px;
    }

    .fs-journey__illustration {
        width: 160px;
        height: 160px;
    }
}
/**/
.fs-ocean-call {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--fs-deep-ocean) 0%, var(--fs-ocean-blue) 100%);
    position: relative;
    overflow: hidden;
}

.fs-ocean-call__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fs-ocean-call__visual {
    position: relative;
}

.fs-ocean-call__image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(64, 216, 232, 0.3);
    border: 3px solid var(--fs-aqua-cyan);
    position: relative;
    z-index: 2;
}

.fs-ocean-call__glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(64, 216, 232, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.fs-ocean-call__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fs-ocean-call__title {
    margin-bottom: 0;
}

.fs-ocean-call__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fs-ocean-call__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    background: rgba(26, 63, 107, 0.3);
    border: 1px solid rgba(64, 216, 232, 0.2);
    transition: all 0.3s ease;
}

.fs-ocean-call__feature:hover {
    background: rgba(26, 63, 107, 0.5);
    border-color: var(--fs-aqua-cyan);
    transform: translateX(8px);
}

.fs-ocean-call__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-aqua-cyan), var(--fs-bright-yellow));
    border-radius: 12px;
    padding: 2px;
}

.fs-ocean-call__feature-icon img {
    width: 28px;
    height: 28px;
}

.fs-ocean-call__feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fs-ocean-call__feature-text h6 {
    margin-bottom: 0;
    color: var(--fs-aqua-cyan);
}

.fs-ocean-call__feature-text span {
    font-size: 16px;
    line-height: 1.5;
    color: #b8d4e8;
}

.fs-tales {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--fs-ocean-blue) 0%, var(--fs-deep-ocean) 100%);
    position: relative;
    overflow: hidden;
}

.fs-tales__heading {
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-tales__slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.fs-tales__track {
    display: flex;
    gap: 32px;
    animation: scroll-tales 40s linear infinite;
}

.fs-tales__track:hover {
    animation-play-state: paused;
}

@keyframes scroll-tales {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 6 * 3 - 48px));
    }
}

.fs-tales__card {
    flex: 0 0 380px;
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.6), rgba(13, 40, 71, 0.8));
    border-radius: 24px;
    padding: 36px 32px;
    border: 2px solid rgba(64, 216, 232, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.fs-tales__card:hover {
    transform: translateY(-8px);
    border-color: var(--fs-aqua-cyan);
    box-shadow: 0 16px 48px rgba(64, 216, 232, 0.4);
}

.fs-tales__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--fs-bright-yellow);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    margin-bottom: 24px;
}

.fs-tales__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-tales__name {
    margin-bottom: 8px;
    color: var(--fs-bright-yellow);
}

.fs-tales__role {
    font-size: 15px;
    color: var(--fs-aqua-cyan);
    font-weight: var(--fs-weight-bold);
    margin-bottom: 20px;
}

.fs-tales__story {
    font-size: 16px;
    line-height: 1.7;
    color: #b8d4e8;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .fs-ocean-call__layout {
        gap: 60px;
    }

    .fs-tales__card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .fs-ocean-call {
        padding: 80px 0;
    }

    .fs-ocean-call__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fs-ocean-call__visual {
        order: 2;
    }

    .fs-ocean-call__content {
        order: 1;
    }

    .fs-ocean-call__feature {
        padding: 16px;
    }

    .fs-ocean-call__feature:hover {
        transform: translateX(0);
    }

    .fs-tales {
        padding: 80px 0;
    }

    .fs-tales__heading {
        margin-bottom: 60px;
    }

    .fs-tales__card {
        flex: 0 0 300px;
    }

    .fs-tales__avatar {
        width: 100px;
        height: 100px;
    }
}
/**/
.fs-mystic-questions {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--fs-deep-ocean) 0%, var(--fs-ocean-blue) 100%);
}

.fs-mystic-questions__heading {
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-mystic-questions__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fs-mystic-questions__item {
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.4), rgba(13, 40, 71, 0.6));
    border-radius: 20px;
    border: 2px solid rgba(64, 216, 232, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-mystic-questions__item.fs-mystic-questions__item--active {
    border-color: var(--fs-aqua-cyan);
    box-shadow: 0 8px 24px rgba(64, 216, 232, 0.3);
}

.fs-mystic-questions__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.fs-mystic-questions__trigger:hover {
    background: rgba(64, 216, 232, 0.1);
}

.fs-mystic-questions__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-aqua-cyan), var(--fs-bright-yellow));
    border-radius: 10px;
}

.fs-mystic-questions__icon img {
    width: 24px;
    height: 24px;
}

.fs-mystic-questions__question {
    flex: 1;
    font-family: var(--fs-font-heading);
    font-size: 20px;
    font-weight: var(--fs-weight-normal);
    color: #ffffff;
}

.fs-mystic-questions__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: var(--fs-weight-normal);
    color: var(--fs-bright-yellow);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fs-mystic-questions__item--active .fs-mystic-questions__toggle {
    transform: rotate(45deg);
    background: rgba(255, 215, 0, 0.2);
}

.fs-mystic-questions__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.fs-mystic-questions__item--active .fs-mystic-questions__answer {
    max-height: 300px;
    padding: 10px 28px 24px 28px;
}

.fs-mystic-questions__answer p {
    margin-bottom: 0;
    color: #b8d4e8;
    line-height: 1.7;
}
.fs-call-adventure {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fs-ocean-blue) 0%, var(--fs-deep-ocean) 50%, var(--fs-ocean-blue) 100%);
}

.fs-call-adventure__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fs-call-adventure__bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 216, 232, 0.2), transparent);
    animation: float-bubble 15s ease-in-out infinite;
}

.fs-call-adventure__bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.fs-call-adventure__bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: 15%;
    animation-delay: 5s;
}

.fs-call-adventure__bubble:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px);
        opacity: 0.6;
    }
}

.fs-call-adventure__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fs-call-adventure__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.fs-call-adventure__title {
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-call-adventure__subtitle {
    margin-bottom: 0;
    font-size: 22px;
    color: #b8d4e8;
}

.fs-call-adventure__note {
    font-size: 16px;
    color: var(--fs-aqua-cyan);
    font-weight: var(--fs-weight-bold);
}

.fs-call-adventure__visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.fs-call-adventure__image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 3px solid var(--fs-aqua-cyan);
    box-shadow: 0 20px 60px rgba(64, 216, 232, 0.4);
    position: relative;
    z-index: 2;
}

.fs-call-adventure__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.fs-newsletter {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--fs-deep-ocean) 0%, var(--fs-ocean-blue) 100%);
}

.fs-newsletter__wrapper {
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.6), rgba(13, 40, 71, 0.8));
    border-radius: 32px;
    padding: 60px 50px;
    border: 2px solid rgba(64, 216, 232, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fs-newsletter__wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 216, 232, 0.1), transparent);
    border-radius: 50%;
}

.fs-newsletter__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-aqua-cyan), var(--fs-bright-yellow));
    border-radius: 50%;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.fs-newsletter__icon img {
    width: 40px;
    height: 40px;
}

.fs-newsletter__content {
    margin-bottom: 36px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.fs-newsletter__title {
    margin-bottom: 16px;
    color: var(--fs-bright-yellow);
}

.fs-newsletter__text {
    margin-bottom: 0;
    font-size: 18px;
    color: #b8d4e8;
    line-height: 1.7;
}

.fs-newsletter__form {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.fs-newsletter__input-group {
    display: flex;
    gap: 12px;
}

.fs-newsletter__input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 16px;
    border: 2px solid rgba(64, 216, 232, 0.3);
    background: rgba(13, 40, 71, 0.6);
    color: #ffffff;
    font-family: var(--fs-font-body);
    font-size: 17px;
    transition: all 0.3s ease;
}

.fs-newsletter__input::placeholder {
    color: #6b8399;
}

.fs-newsletter__input:focus {
    outline: none;
    border-color: var(--fs-aqua-cyan);
    background: rgba(13, 40, 71, 0.8);
    box-shadow: 0 0 20px rgba(64, 216, 232, 0.2);
}

.fs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fs-modal--visible {
    display: flex;
}

.fs-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 46, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fs-modal__content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.95), rgba(13, 40, 71, 0.95));
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--fs-aqua-cyan);
    box-shadow: 0 20px 60px rgba(64, 216, 232, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideUp 0.4s ease;
}

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

.fs-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: var(--fs-bright-yellow);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: var(--fs-weight-normal);
}

.fs-modal__close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--fs-bright-yellow);
    transform: rotate(90deg);
}

.fs-modal__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-sea-green), var(--fs-aqua-cyan));
    border-radius: 50%;
    margin-bottom: 28px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.fs-modal__icon img {
    width: 52px;
    height: 52px;
}

.fs-modal__title {
    margin-bottom: 16px;
    color: var(--fs-bright-yellow);
    animation: fadeInUp 0.5s ease 0.3s both;
}

.fs-modal__text {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #b8d4e8;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.fs-footer {
    background: linear-gradient(180deg, var(--fs-deep-ocean) 0%, #06162e 100%);
    padding: 80px 0 32px;
    border-top: 2px solid rgba(64, 216, 232, 0.2);
}

.fs-footer__disclaimer {
    background: linear-gradient(135deg, rgba(26, 63, 107, 0.4), rgba(13, 40, 71, 0.6));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
}

.fs-footer__age-badge {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-coral-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--fs-deep-ocean);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

.fs-footer__age-icon {
    width: 60px;
    height: 60px;
}

.fs-footer__disclaimer-title {
    color: var(--fs-bright-yellow);
    margin-bottom: 20px;
    font-size: 24px;
}

.fs-footer__disclaimer-text {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.8;
    color: #b8d4e8;
}

.fs-footer__support-orgs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(64, 216, 232, 0.2);
}

.fs-footer__support-label {
    font-size: 16px;
    font-weight: var(--fs-weight-bold);
    color: var(--fs-aqua-cyan);
}

.fs-footer__support-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.fs-footer__support-link {
    display: block;
    transition: all 0.3s ease;
}

.fs-footer__support-link:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.fs-footer__support-link img {
    height: 50px;
    width: auto;
    filter: brightness(0.9) invert(1);
}

.fs-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.fs-footer__column--brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fs-footer__logo {
    font-family: var(--fs-font-heading);
    font-size: 28px;
    font-weight: var(--fs-weight-heading-bold);
    background: linear-gradient(135deg, var(--fs-bright-yellow), var(--fs-aqua-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-footer__description {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #8ba8c4;
    max-width: 400px;
}

.fs-footer__social {
    display: flex;
    gap: 16px;
}

.fs-footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 216, 232, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(64, 216, 232, 0.3);
    transition: all 0.3s ease;
}

.fs-footer__social-link:hover {
    background: rgba(64, 216, 232, 0.2);
    border-color: var(--fs-aqua-cyan);
    transform: translateY(-4px);
}

.fs-footer__social-link img {
    width: 24px;
    height: 24px;
}

.fs-footer__title {
    margin-bottom: 20px;
    color: var(--fs-bright-yellow);
}

.fs-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fs-footer__link {
    font-size: 16px;
    color: #8ba8c4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.fs-footer__link:hover {
    color: var(--fs-aqua-cyan);
    transform: translateX(4px);
}

.fs-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(64, 216, 232, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.fs-footer__copyright {
    margin-bottom: 0;
    font-size: 15px;
    color: #6b8399;
}

.fs-footer__keywords {
    margin-bottom: 0;
    font-size: 14px;
    color: #6b8399;
}

@media (max-width: 1024px) {
    .fs-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .fs-footer__column--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .fs-mystic-questions {
        padding: 80px 0;
    }

    .fs-mystic-questions__heading {
        margin-bottom: 60px;
    }

    .fs-mystic-questions__trigger {
        padding: 20px;
        gap: 16px;
    }

    .fs-mystic-questions__icon {
        width: 36px;
        height: 36px;
    }

    .fs-mystic-questions__icon img {
        width: 20px;
        height: 20px;
    }

    .fs-mystic-questions__question {
        font-size: 18px;
    }

    .fs-mystic-questions__item--active .fs-mystic-questions__answer {
        padding: 0 20px 20px 72px;
    }

    .fs-call-adventure {
        padding: 80px 0;
    }

    .fs-call-adventure__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fs-call-adventure__content {
        text-align: center;
        align-items: center;
    }

    .fs-call-adventure__subtitle {
        font-size: 19px;
    }

    .fs-newsletter {
        padding: 80px 0;
    }

    .fs-newsletter__wrapper {
        padding: 50px 32px;
    }

    .fs-newsletter__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 28px;
    }

    .fs-newsletter__icon img {
        width: 36px;
        height: 36px;
    }

    .fs-newsletter__content {
        margin-bottom: 32px;
    }

    .fs-newsletter__text {
        font-size: 17px;
    }

    .fs-newsletter__input-group {
        flex-direction: column;
    }

    .fs-newsletter__input-group .fs-button {
        width: 100%;
    }

    .fs-modal__content {
        padding: 50px 32px;
        margin: 0 16px;
    }

    .fs-modal__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .fs-modal__icon img {
        width: 44px;
        height: 44px;
    }

    .fs-modal__text {
        font-size: 17px;
    }

    .fs-footer {
        padding: 60px 0 24px;
    }

    .fs-footer__disclaimer {
        padding: 32px 24px;
        margin-bottom: 50px;
    }

    .fs-footer__age-badge {
        top: -25px;
        right: 20px;
        width: 70px;
        height: 70px;
    }

    .fs-footer__age-icon {
        width: 50px;
        height: 50px;
    }

    .fs-footer__disclaimer-title {
        font-size: 20px;
    }

    .fs-footer__disclaimer-text {
        font-size: 14px;
    }

    .fs-footer__support-logos {
        gap: 24px;
    }

    .fs-footer__support-link img {
        height: 40px;
    }

    .fs-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .fs-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}