/* Базовые стили */
*, ::before, ::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.wrapper {
    overflow: hidden;
}

/* Общие стили */
[class*='__container'] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 20px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #bb1d1d, #f8c006);
    border-radius: 3px;
}

.section__title--white {
    color: #fff;
}

.section__title--white::after {
    background: linear-gradient(90deg, #f8c006, #fff);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(187, 29, 29, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(187, 29, 29, 0.4);
}

.btn--secondary {
    background: #f8c006;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(248, 192, 6, 0.3);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 192, 6, 0.4);
}

.btn--large {
    padding: 20px 50px;
    font-size: 18px;
}

/* ======================== ГЕРОЙ ======================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bb1d1d 0%, #8b1515 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(248, 192, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 192, 6, 0.1) 0%, transparent 50%);
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero__badge {
    display: inline-block;
    padding: 12px 30px;
    background: #f8c006;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

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

.hero__title {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero__highlight {
    color: #f8c006;
    display: block;
    font-size: 90px;
}

.hero__date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.date__icon {
    font-size: 48px;
}

.date__text {
    text-align: left;
}

.date__day {
    font-size: 32px;
    font-weight: 700;
    color: #f8c006;
}

.date__time {
    font-size: 20px;
    color: #fff;
}

.hero__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.location__icon {
    font-size: 36px;
}

.location__text {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    opacity: 0.8;
}

.scroll__arrow {
    font-size: 32px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ======================== ПРЕИМУЩЕСТВА ======================== */

.benefits {
    padding: 80px 0;
    background: #f9f9f9;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit__card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.benefit__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit__text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ======================== ДЕНЬ ОТКРЫТИЯ ======================== */

.opening {
    padding: 80px 0;
    background: linear-gradient(135deg, #bb1d1d 0%, #8b1515 100%);
    color: #fff;
}

.opening__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.opening__feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(248, 192, 6, 0.3);
    transition: all 0.3s;
}

.opening__feature:hover {
    border-color: #f8c006;
    background: rgba(255, 255, 255, 0.08);
}

.feature__number {
    font-size: 64px;
    margin-bottom: 20px;
}

.opening__feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f8c006;
}

.opening__feature p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

.opening__feature strong {
    color: #f8c006;
    font-size: 20px;
}

/* Таймер */
.opening__timer {
    background: rgba(187, 29, 29, 0.2);
    padding: 50px 30px;
    border-radius: 20px;
    border: 3px solid #bb1d1d;
}

.timer__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f8c006;
}

.timer__blocks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer__block {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 120px;
    text-align: center;
}

.timer__number {
    font-size: 56px;
    font-weight: 800;
    color: #f8c006;
    line-height: 1;
    margin-bottom: 10px;
}

.timer__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.timer__separator {
    font-size: 48px;
    font-weight: 700;
    color: #f8c006;
    align-self: center;
}

/* ======================== ЦЕНЫ ======================== */

.prices {
    padding: 80px 0;
    background: #fff;
}

.prices__subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.prices__table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.price__card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.price__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price__day {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price__amount {
    font-size: 42px;
    font-weight: 800;
    color: #bb1d1d;
    line-height: 1;
    margin-bottom: 10px;
}

.price__label {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.price__note {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.price__card--mon { border-color: rgba(187, 29, 29, 0.2); }
.price__card--tue { border-color: rgba(187, 29, 29, 0.3); }
.price__card--wed { border-color: rgba(187, 29, 29, 0.4); }
.price__card--thu { border-color: rgba(187, 29, 29, 0.5); }
.price__card--fri { border-color: rgba(187, 29, 29, 0.6); }
.price__card--sat { border-color: rgba(187, 29, 29, 0.8); }

.price__card--sun {
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    border-color: #f8c006;
}

.price__card--sun .price__day,
.price__card--sun .price__amount,
.price__card--sun .price__label,
.price__card--sun .price__note {
    color: #fff;
}

.price__card--best {
    position: relative;
}

.price__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8c006;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Пример экономии */
.prices__example {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid #f8c006;
}

.prices__example h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.example__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.example__item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.example__item--highlight {
    border: 3px solid #f8c006;
}

.example__icon {
    font-size: 48px;
}

.example__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.example__text strong {
    font-size: 18px;
    color: #1a1a1a;
}

.example__text span {
    font-size: 24px;
    font-weight: 700;
    color: #bb1d1d;
}

.example__arrow {
    font-size: 36px;
    font-weight: 700;
    color: #bb1d1d;
}

.example__saving {
    text-align: center;
    font-size: 32px;
    color: #1a1a1a;
}

.example__saving strong {
    color: #bb1d1d;
}

/* ======================== КАК ЭТО РАБОТАЕТ ======================== */

.howto {
    padding: 80px 0;
    background: #f9f9f9;
}

.howto__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step__card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step__content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.step__arrow {
    font-size: 32px;
    font-weight: 700;
    color: #bb1d1d;
}

/* ======================== КАТАЛОГ ======================== */

.catalog {
    padding: 80px 0;
    background: #fff;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.catalog__item {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.catalog__item:hover {
    border-color: #f8c006;
    transform: translateY(-5px);
}

.catalog__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.catalog__item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.catalog__item ul {
    text-align: left;
    list-style: none;
}

.catalog__item li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.catalog__item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bb1d1d;
    font-weight: 700;
}

/* ======================== ОТЗЫВЫ ======================== */

.reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review__card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review__stars {
    font-size: 24px;
    margin-bottom: 20px;
}

.review__text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review__author {
    font-size: 14px;
    font-weight: 600;
    color: #bb1d1d;
}

/* ======================== ЛОКАЦИЯ ======================== */

.location {
    padding: 80px 0;
    background: #fff;
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info__block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info__icon {
    font-size: 48px;
    flex-shrink: 0;
}

.info__text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info__text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.info__text p a{
    font-weight: 700;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.info__note {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.location__map {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map__placeholder {
    text-align: center;
    padding: 40px;
}

.map__icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.map__placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: #666;
}

.map__address {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
}

/* ======================== CTA ======================== */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    text-align: center;
    color: #fff;
}

.cta__title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta__subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta__date {
    font-size: 28px;
    font-weight: 600;
    color: #f8c006;
    margin-bottom: 50px;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================== ФУТЕР ======================== */

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8c006;
}

.footer__column p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social__link {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s;
}

.social__link:hover {
    color: #f8c006;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* ======================== АДАПТИВ ======================== */

@media (max-width: 991px) {
    .hero__title {
        font-size: 56px;
    }

    .hero__highlight {
        font-size: 70px;
    }

    .section__title {
        font-size: 36px;
    }

    .location__content {
        grid-template-columns: 1fr;
    }

    .howto__steps {
        flex-direction: column;
    }

    .step__arrow {
        transform: rotate(90deg);
    }
}

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

    .hero__highlight {
        font-size: 52px;
    }

    .date__day {
        font-size: 24px;
    }

    .date__time {
        font-size: 16px;
    }

    .location__text {
        font-size: 18px;
    }

    .section__title {
        font-size: 30px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .timer__blocks {
        gap: 10px;
    }

    .timer__block {
        padding: 15px 20px;
        min-width: 80px;
    }

    .timer__number {
        font-size: 36px;
    }

    .example__grid {
        flex-direction: column;
    }

    .example__arrow {
        transform: rotate(90deg);
    }

    .cta__title {
        font-size: 36px;
    }

    .cta__subtitle {
        font-size: 18px;
    }

    .cta__date {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__highlight {
        font-size: 42px;
    }

    .hero__badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .section__title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .benefit__card,
    .opening__feature,
    .catalog__item {
        padding: 30px 20px;
    }

    .prices__example {
        padding: 30px 20px;
    }

    .prices__table {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .price__card {
        padding: 20px 15px;
    }

    .price__amount {
        font-size: 32px;
    }
}

/* ===== Рекламный ролик ===== */
.promo-video {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-video__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.promo-video__wrapper {
    margin-top: 40px;
}

.promo-video__placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-video__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.promo-video__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s ease;
}

.promo-video__play-btn:hover {
    transform: scale(1.1);
}

.promo-video__play-btn svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.promo-video__loading {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-size: 16px;
    z-index: 3;
    border-radius: 16px;
}

.promo-video__spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #f8c006;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.promo-video__caption {
    margin-top: 16px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 600px) {
    .promo-video {
        padding: 50px 0;
    }
}

/* Подпись на кнопке Play */
.promo-video__play-label {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    letter-spacing: 0.01em;
}

/* Кнопка звука */
.promo-video__mute-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.6);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.promo-video__mute-btn:hover {
    transform: scale(1.04);
}

.promo-video__mute-btn--on {
    background: rgba(248, 192, 6, 0.85);
    border-color: #f8c006;
    color: #1a1a2e;
}

.promo-video__mute-btn--on svg path,
.promo-video__mute-btn--on svg line {
    stroke: #1a1a2e;
    fill: none;
}

.promo-video__mute-btn--on svg path[fill="white"] {
    fill: #1a1a2e;
}

.promo-video__mute-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Кнопка повтора */
.promo-video__replay-btn {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0,0,0,0.55);
    border: none;
    border-radius: 16px;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.promo-video__replay-btn:hover {
    background: rgba(0,0,0,0.72);
}

.promo-video__replay-btn svg {
    width: 32px;
    height: 32px;
}
/* ===== Кнопка основного сайта в шапке ===== */
.hero__site-link {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero__site-link:hover {
    background: rgba(248, 192, 6, 0.9);
    border-color: #f8c006;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 192, 6, 0.35);
}

.hero__site-link:hover .hero__site-link__arrow {
    transform: translateX(3px);
}

.hero__site-link__icon {
    display: flex;
    align-items: center;
    opacity: 0.85;
}

.hero__site-link__icon svg {
    width: 18px;
    height: 18px;
}

.hero__site-link__text {
    white-space: nowrap;
}

.hero__site-link__arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.hero__site-link__arrow svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .hero__site-link {
        top: 16px;
        right: 16px;
        padding: 8px 14px 8px 10px;
        font-size: 13px;
    }
    .hero__site-link__icon svg {
        width: 16px;
        height: 16px;
    }
}