*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background: var(--yep-bg);
}

body > .main {
    flex: 1;
}

:root {
    --content-padding: 1.5rem;
    --yep-yellow: #FFD700;
    --yep-red: #E74C3C;
    --yep-orange: #FF8C00;
    --yep-bg: #1A1B22;
    --yep-bg-card: #23242c;
    --yep-border: #3a3b44;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--yep-bg);
    border-bottom: 1px solid var(--yep-border);
    padding: 0.75rem 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.header__logo-img {
    display: block;
    height: 40px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.header__menu a {
    color: #b8b8c4;
    text-decoration: none;
}

.header__menu a:hover {
    color: var(--yep-yellow);
}

.header__menu li.is-active a {
    color: var(--yep-yellow);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #808090;
    border-bottom: 1px solid var(--yep-border);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.breadcrumbs__item::after {
    content: '/';
    margin-left: 0.25rem;
    color: #606070;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__item a {
    color: #808090;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: var(--yep-yellow);
}

.breadcrumbs__item:last-child,
.breadcrumbs__item--current {
    color: #b8b8c4;
}

.breadcrumbs__item--current a {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--yep-border);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
}

.header__burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.header__burger[aria-expanded="true"] .header__burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-bar:nth-child(2) {
    opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .header__inner {
        flex-wrap: nowrap;
        gap: 0;
    }

    .header__logo {
        order: 1;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        order: 3;
        display: none;
        padding: 1rem var(--content-padding);
        background: var(--yep-bg);
        border-bottom: 1px solid var(--yep-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .header__nav.is-open {
        display: flex;
    }

    .header__right {
        order: 2;
        margin-left: auto;
    }

    .header__burger {
        display: flex;
    }

    .header__menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .header__menu li {
        border-bottom: 1px solid var(--yep-border);
    }

    .header__menu li:last-child {
        border-bottom: none;
    }

    .header__menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .header__cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn--primary {
    background: var(--yep-yellow);
    color: #000;
}

.btn--outline {
    background: transparent;
    color: var(--yep-yellow);
    border: 2px solid var(--yep-yellow);
}

.hero .btn--hero {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    background: rgba(231, 76, 60, 0.85);
    color: #fff;
    border-radius: 10px;
    box-shadow: none;
}

.hero .btn--hero:hover {
    background: rgba(231, 76, 60, 0.95);
    box-shadow: none;
}

.btn--hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--yep-red);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.btn--hero:hover {
    box-shadow: 0 6px 28px rgba(231, 76, 60, 0.5);
}

.btn--hero-outline {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--yep-border);
    border-radius: 10px;
}

.btn--hero-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero */
.hero {
    position: relative;
    margin: 2rem 0 0.75rem;
    padding: 2.5rem var(--content-padding);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--yep-border);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(26, 27, 34, 0.95) 0%,
        rgba(35, 36, 44, 0.92) 35%,
        rgba(45, 30, 35, 0.95) 70%,
        rgba(35, 25, 30, 0.98) 100%
    );
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 85% 15%, rgba(255, 215, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 140, 0, 0.06) 0%, transparent 60%);
}

.hero__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero__wrap--centered {
    flex-direction: column;
    text-align: center;
}

.hero__wrap--centered .hero__promo {
    margin: 0 auto;
    text-align: center;
}

.hero__wrap--centered .hero__promo-buttons {
    align-items: center;
}

.hero__content {
    flex: 1;
    min-width: 280px;
}

.hero__title {
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero__text {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.hero__promo {
    flex-shrink: 0;
    padding: 1.75rem 2rem;
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.15) 0%, rgba(255, 140, 0, 0.08) 50%, rgba(0, 0, 0, 0.25) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    min-width: 280px;
}

.hero__promo-bonus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yep-yellow);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.hero__promo-desc {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero__promo-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero__promo-buttons .btn {
    text-align: center;
}

/* Games section */
.games-section {
    padding: 0.75rem 0 1rem;
}

.content-body .games-section {
    padding: 0;
    margin: 0.5rem 0;
}

.content-cta {
    text-align: center;
    margin: 1.5rem 0;
}

/* CTA block */
.cta-block {
    position: relative;
    margin: 2rem 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Декоративный круг справа */
.cta-block::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-block__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem 2.5rem;
    align-items: center;
    padding: 2.25rem 2.5rem;
}

.cta-block__left {
    min-width: 0;
}

.cta-block__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.cta-block__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.6rem;
    display: block;
}

.cta-block__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1.3;
}

.cta-block__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.cta-block__stats {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.cta-block__stat {
    text-align: center;
    padding: 0.5rem 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-block__stat:last-child {
    border-right: none;
}

.cta-block__stat-value {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.cta-block__stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.3rem;
    white-space: nowrap;
}

.cta-block__buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Цветовые темы */
.cta-block--bonus {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 40%, #f57c00 100%);
}

.cta-block--app {
    background: linear-gradient(135deg, #0d1b6e 0%, #1565c0 60%, #0277bd 100%);
}

.cta-block--login {
    background: linear-gradient(135deg, #1a3d1a 0%, #2e7d32 55%, #1b5e20 100%);
}

.cta-block--review {
    background: linear-gradient(135deg, #38006b 0%, #6a1b9a 55%, #4a148c 100%);
}

.cta-block--main {
    background: linear-gradient(135deg, #0a1520 0%, #0d2137 55%, #0a1a2e 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

/* Кнопки внутри CTA */
.cta-block .btn--primary {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cta-block .btn--cta-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.cta-block .btn--cta-light:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
    .cta-block__inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.75rem;
        gap: 1.5rem;
    }

    .cta-block__right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .cta-block__stats {
        flex-shrink: 1;
    }
}

@media (max-width: 600px) {
    .cta-block__inner {
        padding: 1.75rem 1.25rem;
    }

    .cta-block__right {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-block__title {
        font-size: 1.2rem;
    }

    .cta-block__stat {
        padding: 0.5rem 0.85rem;
    }

    .cta-block__stat-value {
        font-size: 1.2rem;
    }

    .cta-block__buttons {
        width: 100%;
    }

    .cta-block .btn--primary,
    .cta-block .btn--cta-light {
        flex: 1;
        text-align: center;
    }
}

.section-title {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.games-grid__item {
    margin: 0;
}

.game-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: var(--yep-bg-card);
    transition: transform 0.15s;
    border: 1px solid var(--yep-border);
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-card__img-wrap {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
    color: #fff;
}

.game-card:hover .game-card__play {
    opacity: 1;
}

/* Bonuses section */
.bonuses-section {
    padding: 2rem var(--content-padding);
    background: var(--yep-bg-card);
    border-radius: 16px;
}

.bonuses-section .section-title {
    margin-left: 0;
    margin-right: 0;
}

.bonuses-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bonuses-content li {
    margin: 0.25rem 0;
}

.bonuses-content .btn {
    margin-top: 1rem;
}

/* Content section */
.content-section {
    padding: 2rem 0;
}

.content-section .content-body {
    padding: 0;
}

.content-body h1 {
    font-size: 1.75rem;
    margin: 0 0 1rem;
}

.content-body h2,
.content-body h3 {
    scroll-margin-top: 5rem;
}

.content-body h2 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--yep-border);
}

.content-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-body h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.content-body p {
    margin: 0 0 1rem;
}

.content-body .content-img {
    display: block;
    max-width: 80%;
    margin: 1rem auto;
    border-radius: 12px;
}

.content-body ul,
.content-body ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin: 0.25rem 0;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0 1.5rem;
}

.content-body table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.95rem;
}

.content-body th,
.content-body td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border: 1px solid var(--yep-border);
}

.content-body th {
    background: var(--yep-bg-card);
    font-weight: 600;
}

.content-body tbody tr {
    transition: background 0.15s;
}

.content-body tbody tr:hover {
    background: rgba(255, 215, 0, 0.06);
}

/* TOC (spoiler) */
.toc {
    background: var(--yep-bg-card);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid var(--yep-border);
}

.toc[open] .toc__summary::after {
    transform: rotate(180deg);
}

.toc__summary {
    padding: 1rem var(--content-padding);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toc__summary::-webkit-details-marker,
.toc__summary::marker {
    display: none;
}

.toc__summary::after {
    content: '▼';
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.2s;
}

.toc__list {
    margin: 0;
    padding: 0 var(--content-padding) 1rem;
    padding-left: calc(var(--content-padding) + 2rem);
    list-style: decimal;
}

.toc__item {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.toc .toc__item a,
.toc .toc__item a:link,
.toc .toc__item a:visited,
.toc .toc__item a:active {
    display: inline-block;
    padding: 0.35rem 0;
    color: #b8b8c4 !important;
    text-decoration: none !important;
    transition: color 0.15s, padding-left 0.15s;
}

.toc .toc__item a:hover {
    color: var(--yep-yellow) !important;
    padding-left: 4px;
}

/* Footer */
.footer {
    background: #121318;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--yep-border);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer__brand {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer__logo {
    color: #fff;
    text-decoration: none;
}

.footer__logo-img {
    display: block;
    height: 36px;
    width: auto;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__links a {
    color: #808090;
    text-decoration: none;
}

.footer__links a:hover {
    color: var(--yep-yellow);
}

.faq {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--yep-border);
}

.faq__title {
    font-size: 1.1rem;
    margin: 0 0 1rem;
    color: #fff;
}

.faq__list {
    margin: 0;
    padding: 0;
}

.faq__item {
    margin: 0 0 0.5rem;
    background: var(--yep-bg-card);
    border-radius: 10px;
    border: 1px solid var(--yep-border);
    overflow: hidden;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__question {
    padding: 1rem var(--content-padding);
    font-weight: 600;
    font-size: 1rem;
    color: #b8b8c4;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.faq__question::-webkit-details-marker,
.faq__question::marker {
    display: none;
}

.faq__question::after {
    content: '▼';
    font-size: 0.7em;
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
    transform: rotate(180deg);
}

.faq__item[open] .faq__question {
    color: #fff;
}

.faq__question:hover {
    color: var(--yep-yellow);
}

.faq__question-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

.faq__answer {
    padding: 0 1rem 1rem;
    padding-left: var(--content-padding);
    font-size: 1rem;
    color: #808090;
    line-height: 1.5;
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--yep-bg-card);
    border-radius: 12px;
    border: 1px solid var(--yep-border);
}

.author-block__img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-block__info {
    flex: 1;
    min-width: 0;
}

.author-block__name {
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}

.author-block__name-link {
    color: inherit;
    text-decoration: none;
}

.author-block__name-link:hover {
    color: var(--yep-yellow);
}

.author-block__bio {
    margin: 0;
    font-size: 0.9rem;
    color: #808090;
    line-height: 1.5;
}

.author-block--page {
    margin-top: 2rem;
}

.author-block__name--h1 {
    font-size: 1.5rem;
    margin: 0;
}

.author-block__name--h3 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

.author-bio-full {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--yep-border);
    font-size: 1rem;
    line-height: 1.6;
    color: #b8b8c4;
}

.error-404 {
    padding: 3rem var(--content-padding);
    text-align: center;
}

.error-404 h1 {
    font-size: 4rem;
    margin: 0 0 0.5rem;
    color: var(--yep-yellow);
    font-weight: 700;
}

.error-404 p {
    margin: 0 0 1rem;
    color: #b8b8c4;
}

.error-404 .btn {
    margin-top: 0.5rem;
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.payment-badge {
    display: block;
    line-height: 0;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0.75;
    transition: opacity 0.15s;
}

.payment-badge:hover {
    opacity: 1;
}

.footer__disclaimer {
    font-size: 0.85rem;
    color: #606070;
    margin-bottom: 1rem;
}

.footer__copy {
    font-size: 0.85rem;
    color: #505060;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__age {
    display: block;
    flex-shrink: 0;
    opacity: 0.7;
}

/* Mobile responsive */
@media (max-width: 768px) {
    :root {
        --content-padding: 1rem;
    }

    .header__logo-img {
        height: 34px;
    }

    .hero {
        margin: 1rem 0 0.5rem;
        padding: 1.5rem var(--content-padding);
    }

    .hero__wrap {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero__content {
        min-width: unset;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__promo {
        min-width: unset;
        width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .hero__promo-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .content-section {
        padding: 1.5rem 0;
    }

    .content-body h1 {
        font-size: 1.5rem;
    }

    .content-body h2 {
        font-size: 1.3rem;
    }

    .content-body h3 {
        font-size: 1.1rem;
    }

    .breadcrumbs {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }

    .breadcrumbs__list {
        gap: 0.15rem;
    }

    .footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .author-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}
