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

body {
    font-family: 'Public Sans', sans-serif;
    background: #0D0630;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.top-bar {
    background: #000000;
    padding: 0.5rem 0;
}

.top-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    padding: 0.25rem 1rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar__item--right {
    margin-left: auto;
}

.top-bar__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.icon-phone:before {
    content: "📞";
}

.icon-email:before {
    content: "✉️";
}

.top-bar__text {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar__warning {
    color: #E6F9AF;
    font-weight: 600;
    font-size: 14px;
}

.main-nav {
    background: #18314F;
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.main-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 20px;
}

.main-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav__logo-img {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.25rem;
}

.main-nav__toggle:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav__toggle-icon {
    font-size: 1.2rem;
}

.main-nav__toggle-text {
    margin-left: 0.5rem;
}

.main-nav__menu {
    display: flex;
    align-items: center;
}

.main-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav__item {
    list-style: none;
}

.main-nav__link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: color 0.3s ease;
}

.main-nav__link span {
    position: relative;
    display: block;
    padding: 0;
}

.main-nav__link span:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #8BBEB2;
    visibility: hidden;
    transition: all 0.3s ease;
}

.main-nav__item--active .main-nav__link,
.main-nav__item:hover .main-nav__link {
    color: #8BBEB2;
}

.main-nav__item--active .main-nav__link span:before,
.main-nav__item:hover .main-nav__link span:before {
    visibility: visible;
    width: 100%;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #0D0630;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__overlay {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(13, 6, 48, 0.85);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero__text-block {
    max-width: 800px;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero__actions {
    margin-top: 2rem;
}

.hero__btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 30px;
    padding: 12px 35px;
}

.hero__btn--primary {
    background: #8BBEB2;
    border-color: #8BBEB2;
    color: #fff;
}

.hero__btn--primary:hover {
    background: #E6F9AF;
    border-color: #E6F9AF;
    color: #0D0630;
    box-shadow: 0 5px 15px rgba(139, 190, 178, 0.4);
    transform: translateY(-2px);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 1;
}

.hero__scroll-icon {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 15px;
    display: block;
    position: relative;
}

.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    display: block;
    margin: 6px auto;
    border-radius: 2px;
    animation: scroll-animation 1.5s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.platforms-block {
    padding: 5rem 0;
    background: #0D0630;
}

.platforms-block__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.platforms-block__header-area {
    text-align: center;
    margin-bottom: 3rem;
}

.platforms-block__main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E6F9AF;
    margin-bottom: 1rem;
}

.platforms-block__subtitle-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.platforms-block__cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-card {
    background: #18314F;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    width: 100%;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(139, 190, 178, 0.3);
}

.platform-card__top-section {
    padding: 2rem;
    background: rgba(56, 78, 119, 0.3);
    border-bottom: 2px solid #8BBEB2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-card__logo-area {
    flex: 1;
}

.platform-card__logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.platform-card__rating-box {
    text-align: right;
}

.platform-card__stars {
    color: #E6F9AF;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.platform-card__score {
    display: block;
    color: #8BBEB2;
    font-size: 1.1rem;
    font-weight: 600;
}

.platform-card__content-zone {
    padding: 2rem;
}

.platform-card__title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.platform-card__bonus-highlight {
    background: linear-gradient(135deg, #8BBEB2 0%, #384E77 100%);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.platform-card__bonus-label {
    display: block;
    color: #E6F9AF;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.platform-card__bonus-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.platform-card__description {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.platform-card__advantages-list {
    margin-bottom: 1.5rem;
}

.platform-card__advantage-item {
    color: #E6F9AF;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(139, 190, 178, 0.2);
}

.platform-card__advantage-item:last-child {
    border-bottom: none;
}

.platform-card__footer-action {
    padding: 2rem;
    background: rgba(13, 6, 48, 0.5);
    text-align: center;
}

.platform-card__cta-button {
    display: inline-block;
    background: #8BBEB2;
    color: #0D0630;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-card__cta-button:hover {
    background: #E6F9AF;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 190, 178, 0.5);
}

.platform-card__terms {
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.hippodrome-info {
    padding: 5rem 0;
    background: #18314F;
}

.hippodrome-info__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hippodrome-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hippodrome-info__image-col {
    grid-column: 1;
}

.hippodrome-info__text-col {
    grid-column: span 1;
}

.hippodrome-info__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hippodrome-info__text-inner {
    padding-left: 1rem;
    padding-right: 1rem;
}

.hippodrome-info__text {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hippodrome-info__text--dropcap:first-letter {
    color: #8BBEB2;

    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-weight: 700;
}

.why-choose {
    padding: 5rem 0;
    background: #0D0630;
}

.why-choose__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-choose__header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.why-choose__header-inner {
    max-width: 800px;
    text-align: center;
}

.why-choose__title {
    font-size: 2rem;
    font-weight: 700;
    color: #E6F9AF;
    margin-bottom: 1.5rem;
}

.why-choose__intro {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.why-choose__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-choose__card {
    background: #18314F;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose__card:hover {
    transform: translateY(-8px);
    border-color: #8BBEB2;
    box-shadow: 0 10px 30px rgba(139, 190, 178, 0.3);
}

.why-choose__card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-choose__icon {
    font-size: 3.5rem;
}

.why-choose__card-title {
    color: #E6F9AF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.why-choose__card-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.why-choose__action {
    display: flex;
    justify-content: center;
}

.why-choose__action-inner {
    text-align: center;
}

.why-choose__btn {
    display: inline-block;
    background: #8BBEB2;
    border-color: #8BBEB2;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose__btn:hover {
    background: #E6F9AF;
    border-color: #E6F9AF;
    color: #0D0630;
    transform: scale(1.05);
}

.faq-block {
    padding: 5rem 0;
    background: #18314F;
}

.faq-block__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-block__header {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.faq-block__header-inner {
    max-width: 800px;
    text-align: center;
}

.faq-block__subtitle {
    display: block;
    color: #8BBEB2;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-block__title {
    font-size: 2.5rem;
    color: #E6F9AF;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 2rem;
}

.faq-block__lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.faq-block__text {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.faq-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.faq-block__item {
    background: #0D0630;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(139, 190, 178, 0.2);
    transition: all 0.3s ease;
}

.faq-block__item:hover {
    border-color: #8BBEB2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 190, 178, 0.3);
}

.faq-block__question {
    color: #E6F9AF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-block__answer {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.about-platform {
    padding: 5rem 0;
    background: #0D0630;
}

.about-platform__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-platform__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-platform__image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.about-platform__subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8BBEB2;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-platform__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E6F9AF;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-platform__text {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-platform__features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-platform__feature-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-platform__feature-icon {
    flex-shrink: 0;
}

.about-platform__icon {
    font-size: 50px;
    color: #8BBEB2;
}

.about-platform__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E6F9AF;
    margin-bottom: 0.75rem;
}

.about-platform__feature-desc {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.about-platform__action {
    margin-top: 3rem;
}

.about-platform__btn {
    display: inline-block;
    background: linear-gradient(135deg, #8BBEB2 0%, #384E77 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 190, 178, 0.4);
}

.about-platform__btn:hover {
    background: linear-gradient(135deg, #E6F9AF 0%, #8BBEB2 100%);
    color: #0D0630;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 249, 175, 0.5);
}

.content {
    padding: 5rem 0;
    background: #18314F;
}

.content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content__row {
    display: flex;
    justify-content: center;
}

.content__col {
    max-width: 900px;
    width: 100%;
}

.content__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E6F9AF;
    margin-bottom: 2rem;
    text-align: center;
}

.content__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.content__warning {
    background: rgba(230, 249, 175, 0.1);
    padding: 1.5rem;
    margin-top: 2rem;
}

.content__warning-title {
    color: #E6F9AF;
    margin-bottom: 0.5rem;
}

.content__warning-text {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.footer {
    padding: 8rem 0 2rem;
    background: #0D0630;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__row--spacing {
    margin-top: 3rem;
    padding-top: 3rem;
}

.footer__col {
    flex: 1;
    min-width: 250px;
}

.footer__col--large {
    flex: 2;
}

.footer__col--medium {
    flex: 1;
}

.footer__col--full {
    flex-basis: 100%;
}

.footer__logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer__logo {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.footer__heading {
    font-size: 18px;
    color: #E6F9AF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__text {
    color: #999999;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list-item {
    margin-bottom: 0.75rem;
}

.footer__link {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #8BBEB2;
}

.footer__highlight {
    background: rgba(230, 249, 175, 0.15);
    border: 2px solid #E6F9AF;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.footer__highlight-title {
    color: #E6F9AF;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer__highlight-text {
    color: #ffffff;
    margin: 0;
}

.footer__regulators {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__regulator-link {
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__regulator-link:hover {
    opacity: 1;
}

.footer__regulator-img {
    height: 50px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.footer__regulator-link:hover .footer__regulator-img {
    filter: grayscale(0%);
}

.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright-text {
    color: #999999;
    margin: 0;
}

@media (max-width: 991px) {
    .main-nav__toggle {
        display: flex;
        align-items: center;
    }

    .main-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #18314F;
        padding: 1rem 0;
    }

    .main-nav__menu--show {
        display: block;
    }

    .main-nav__list {
        flex-direction: column;
        width: 100%;
    }

    .main-nav__item {
        width: 100%;
    }

    .main-nav__link {
        padding: 1rem 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hippodrome-info__grid {
        grid-template-columns: 1fr;
    }

    .hippodrome-info__image-col,
    .hippodrome-info__text-col {
        grid-column: 1;
    }

    .why-choose__cards {
        grid-template-columns: 1fr;
    }

    .faq-block__grid {
        grid-template-columns: 1fr;
    }

    .about-platform__grid {
        grid-template-columns: 1fr;
    }

    .about-platform__image {
        min-height: 400px;
    }

    .footer__row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .platforms-block {
        padding: 3rem 0;
    }

    .platforms-block__main-title {
        font-size: 2rem;
    }

    .hippodrome-info {
        padding: 3rem 0;
    }

    .hippodrome-info__text--dropcap:first-letter {
        font-size: 60px;
        line-height: 50px;
    }

    .why-choose {
        padding: 3rem 0;
    }

    .why-choose__title {
        font-size: 1.75rem;
    }

    .faq-block {
        padding: 3rem 0;
    }

    .faq-block__title {
        font-size: 2rem;
    }

    .about-platform {
        padding: 3rem 0;
    }

    .about-platform__title {
        font-size: 1.75rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .top-bar__row {
        flex-direction: column;
        align-items: center;
    }

    .top-bar__item {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }

    .top-bar__item--right {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .hero__title {
        font-size: 1.3rem;
    }

    .platforms-block__main-title {
        font-size: 1.5rem;
    }

    .platform-card__top-section {
        flex-direction: column;
        text-align: center;
    }

    .platform-card__rating-box {
        text-align: center;
        margin-top: 1rem;
    }

    .hippodrome-info__text--dropcap:first-letter {
        font-size: 50px;
        line-height: 45px;
        padding-right: 6px;
    }

    .why-choose__title {
        font-size: 1.5rem;
    }

    .why-choose__icon {
        font-size: 2.5rem;
    }

    .faq-block__title {
        font-size: 1.75rem;
    }

    .about-platform__title {
        font-size: 1.5rem;
    }

    .about-platform__feature-content {
        flex-direction: column;
        text-align: center;
    }

    .footer__regulators {
        gap: 1rem;
    }

    .footer__regulator-img {
        height: 35px;
    }
}


.about-text-section {
    padding: 5em 0;
    background: #ffffff;
}
.about-text-section--alt {
    background: #f8f9fa;
}
.about-text-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.about-text-section__header {
    text-align: center;
    margin-bottom: 3em;
}
.about-text-section__main-title {
    font-size: 2.5rem;
    color: #0D0630;
    font-weight: 700;
    margin-bottom: 0;
}
.about-text-section__title {
    font-size: 2rem;
    color: #18314F;
    font-weight: 600;
    margin-bottom: 0;
}
.about-text-section__content {
    max-width: 900px;
    margin: 0 auto;
}
.about-text-section__text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #384E77;
    margin-bottom: 1.5em;
    text-align: justify;
}
@media (max-width: 768px) {
    .about-text-section {
        padding: 3em 0;
    }
    .about-text-section__main-title {
        font-size: 1.875rem;
    }
    .about-text-section__title {
        font-size: 1.5rem;
    }
    .about-text-section__text {
        font-size: 1rem;
        text-align: left;
    }
}

.legal-page {
    padding: 5em 0;
    background: #ffffff;
}
.legal-page__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.legal-page__row {
    display: flex;
    flex-wrap: wrap;
}
.legal-page__col {
    width: 100%;
    padding: 0 15px;
}
.legal-page__main-title {
    font-size: 2.75rem;
    color: #0D0630;
    font-weight: 700;
    margin-bottom: 1.5em;
    text-align: center;
    line-height: 1.3;
}
.legal-page__intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #18314F;
    margin-bottom: 2.5em;
    text-align: justify;
    font-weight: 500;
}
.legal-page__title {
    font-size: 2rem;
    color: #18314F;
    font-weight: 700;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    line-height: 1.4;
}
.legal-page__subtitle {
    font-size: 1.5rem;
    color: #384E77;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.4;
}
.legal-page__text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #384E77;
    margin-bottom: 1.5em;
    text-align: justify;
}
@media (max-width: 991px) {
    .legal-page {
        padding: 3em 0;
    }
    .legal-page__main-title {
        font-size: 2rem;
    }
    .legal-page__intro {
        font-size: 1.125rem;
    }
    .legal-page__title {
        font-size: 1.75rem;
    }
    .legal-page__subtitle {
        font-size: 1.25rem;
    }
    .legal-page__text {
        font-size: 1rem;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .legal-page__main-title {
        font-size: 1.75rem;
    }
    .legal-page__intro {
        font-size: 1rem;
        text-align: left;
    }
    .legal-page__title {
        font-size: 1.5rem;
    }
    .legal-page__subtitle {
        font-size: 1.125rem;
    }
}

.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 6, 48, 0.95);
    z-index: 9999;
    display: table;
    table-layout: fixed;
}

.age-verify-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
}

.age-verify-box > div {
    max-width: 600px;
    margin: 0 auto;
    background: #18314F;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    border: 3px solid #8BBEB2;
}

.age-verify-icon-wrap {
    margin-bottom: 2rem;
}

.age-verify-icon {
    font-size: 5rem;
    display: inline-block;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.age-verify-content {
    margin-bottom: 2rem;
}

.age-verify-title {
    font-size: 2rem;
    color: #E6F9AF;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-verify-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.age-verify-warning-box {
    background: rgba(230, 249, 175, 0.15);
    border: 2px solid #E6F9AF;
    padding: 1rem;
    border-radius: 8px;
}

.age-verify-warning-text {
    color: #E6F9AF;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.age-verify-action-area {
    text-align: center;
}

.age-verify-button {
    background: linear-gradient(135deg, #8BBEB2 0%, #384E77 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(139, 190, 178, 0.4);
}

.age-verify-button:hover {
    background: linear-gradient(135deg, #E6F9AF 0%, #8BBEB2 100%);
    color: #0D0630;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 249, 175, 0.5);
}

.age-verify-button:active {
    transform: scale(0.98);
}

.age-verify-overlay.hidden {
    display: none;
}

@media (max-width: 767px) {
    .age-verify-box > div {
        padding: 2rem;
    }

    .age-verify-icon {
        font-size: 4rem;
    }

    .age-verify-title {
        font-size: 1.5rem;
    }

    .age-verify-text {
        font-size: 0.95rem;
    }

    .age-verify-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .age-verify-box > div {
        padding: 1.5rem;
    }

    .age-verify-icon {
        font-size: 3rem;
    }

    .age-verify-title {
        font-size: 1.3rem;
    }

    .age-verify-text {
        font-size: 0.9rem;
    }

    .age-verify-warning-text {
        font-size: 0.9rem;
    }

    .age-verify-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

.cookies-alert-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #18314F;
    border-top: 3px solid #8BBEB2;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    z-index: 9998;
    display: table;
    table-layout: fixed;
}

.cookies-alert-bar.hidden {
    display: none;
}

.cookies-alert-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 15px;
}

.cookies-alert-content-wrap {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.cookies-alert-icon-section {
    display: table-cell;
    vertical-align: middle;
    width: 80px;
    text-align: center;
    float: left;
}

.cookies-alert-icon {
    font-size: 3rem;
    display: inline-block;
}

.cookies-alert-text-section {
    display: table-cell;
    vertical-align: middle;
    padding: 0 1.5rem;
    float: left;
}

.cookies-alert-heading {
    color: #E6F9AF;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookies-alert-description {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.cookies-alert-link {
    color: #8BBEB2;
    text-decoration: underline;
}

.cookies-alert-link:hover {
    color: #E6F9AF;
}

.cookies-alert-actions-section {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
    float: right;
    width: 400px;
}

.cookies-alert-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cookies-alert-btn--settings {
    background: transparent;
    border: 2px solid #8BBEB2;
    color: #8BBEB2;
}

.cookies-alert-btn--settings:hover {
    background: #8BBEB2;
    color: #0D0630;
}

.cookies-alert-btn--decline {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 2px solid rgba(255,255,255,0.3);
}

.cookies-alert-btn--decline:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.cookies-alert-btn--accept {
    background: linear-gradient(135deg, #8BBEB2 0%, #384E77 100%);
    color: #ffffff;
}

.cookies-alert-btn--accept:hover {
    background: linear-gradient(135deg, #E6F9AF 0%, #8BBEB2 100%);
    color: #0D0630;
    transform: scale(1.05);
}

.cookies-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.cookies-settings-modal.active {
    display: block;
}

.cookies-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 6, 48, 0.9);
}

.cookies-settings-box {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    background: #18314F;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 2px solid #8BBEB2;
    max-height: 80vh;
    overflow-y: auto;
}

.cookies-settings-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(139, 190, 178, 0.3);
    display: table;
    width: 100%;
}

.cookies-settings-title {
    color: #E6F9AF;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    float: left;
    display: table-cell;
    vertical-align: middle;
}

.cookies-settings-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    cursor: pointer;
    float: right;
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    line-height: 1;
}

.cookies-settings-close:hover {
    color: #E6F9AF;
}

.cookies-settings-content {
    padding: 1.5rem;
}

.cookies-settings-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 190, 178, 0.2);
}

.cookies-settings-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookies-settings-item-header {
    display: table;
    width: 100%;
}

.cookies-settings-item-info {
    display: table-cell;
    vertical-align: middle;
    width: 75%;
    float: left;
}

.cookies-settings-item-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookies-settings-item-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookies-settings-item-toggle {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    float: right;
    width: 25%;
}

.cookies-toggle-input {
    display: none;
}

.cookies-toggle-label {
    display: inline-block;
    width: 60px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookies-toggle-label:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: left 0.3s ease;
}

.cookies-toggle-input:checked + .cookies-toggle-label {
    background: #8BBEB2;
}

.cookies-toggle-input:checked + .cookies-toggle-label:after {
    left: 33px;
}

.cookies-toggle-input:disabled + .cookies-toggle-label {
    background: #8BBEB2;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookies-settings-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(139, 190, 178, 0.3);
    text-align: center;
}

.cookies-settings-save-btn {
    background: linear-gradient(135deg, #8BBEB2 0%, #384E77 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-settings-save-btn:hover {
    background: linear-gradient(135deg, #E6F9AF 0%, #8BBEB2 100%);
    color: #0D0630;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .cookies-alert-content-wrap {
        display: block;
    }

    .cookies-alert-icon-section,
    .cookies-alert-text-section,
    .cookies-alert-actions-section {
        display: block;
        width: 100%;
        float: none;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cookies-alert-actions-section {
        text-align: center;
    }

    .cookies-alert-btn {
        margin: 0.25rem;
    }

    .cookies-settings-box {
        margin: 20px;
    }
}

@media (max-width: 767px) {
    .cookies-alert-icon {
        font-size: 2.5rem;
    }

    .cookies-alert-heading {
        font-size: 1.1rem;
    }

    .cookies-alert-description {
        font-size: 0.9rem;
    }

    .cookies-alert-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .cookies-settings-item-info,
    .cookies-settings-item-toggle {
        display: block;
        width: 100%;
        float: none;
        text-align: left;
        margin-bottom: 1rem;
    }

    .cookies-settings-item-toggle {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .cookies-alert-container {
        padding: 1rem 10px;
    }

    .cookies-alert-icon {
        font-size: 2rem;
    }

    .cookies-alert-btn {
        width: 100%;
        margin: 0.25rem 0;
    }

    .cookies-settings-box {
        margin: 10px;
    }

    .cookies-settings-title {
        font-size: 1.2rem;
    }
}