@import 'Frontend.Client.0o02zsa9vi.bundle.scp.css';
@import '_content/Frontend.UI_RCL/Frontend.UI_RCL.7d06y5kwa7.bundle.scp.css';

/* /Components/AuthForm.razor.rz.scp.css */
.authentification-page[b-ti9yiqjlvb] {
    min-height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.authentification-page[b-ti9yiqjlvb]  .input-card .img-avatar-big {
    display: block;
    margin: 1.5rem auto 2rem auto;
    max-width: 220px;
    height: auto;
}

.authentification-fields[b-ti9yiqjlvb] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.authentification-actions[b-ti9yiqjlvb] {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.authentification-submit[b-ti9yiqjlvb] {
    width: 100%;
    max-width: 260px;
    height: 3rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.authentification-submit:hover[b-ti9yiqjlvb] {
    filter: brightness(1.05);
}

.authentification-login-hint[b-ti9yiqjlvb] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color-gray);
}

.authentification-login-link[b-ti9yiqjlvb] {
    display: inline;
    padding: 0;
    margin-left: 0.35rem;
    background: none;
    border: none;
    color: #9fdafe !important;
    text-decoration: underline !important;
    cursor: pointer;
}

.authentification-login-link:link[b-ti9yiqjlvb],
.authentification-login-link:visited[b-ti9yiqjlvb],
.authentification-login-link:hover[b-ti9yiqjlvb],
.authentification-login-link:active[b-ti9yiqjlvb] {
    color: #9fdafe !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .authentification-page[b-ti9yiqjlvb] {
        padding-top: 3rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
html[b-46ojlnh66e], body[b-46ojlnh66e] {
    height: 100%;
    margin: 0;
}

.page[b-46ojlnh66e] {
    position: relative;
    min-height: 100vh; /* vh - viewport height, то есть во всб видемую область */
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0E1128 0%, #505CC7 100%); /*180deg - направление*/
    color: #FFFFFF;
}

/* Принудительно белый текст для базовой типографики */
.page[b-46ojlnh66e]  h1,
.page[b-46ojlnh66e]  h2,
.page[b-46ojlnh66e]  h3,
.page[b-46ojlnh66e]  h4,
.page[b-46ojlnh66e]  h5,
.page[b-46ojlnh66e]  h6,
.page[b-46ojlnh66e]  p {
    color: #FFFFFF;
}


main[b-46ojlnh66e] {
    flex: 1;
}

.top-nav[b-46ojlnh66e] {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: transparent;
}

.top-nav[b-46ojlnh66e]  .auth-header {
    display: flex;
    align-items: center;
}

.top-nav[b-46ojlnh66e]  .auth-header-user {
    color: #FFFFFF;
    font-weight: 500;
}

.top-nav[b-46ojlnh66e]  .auth-header-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Скелетон-плейсхолдер для AuthHeader, пока WASM грузится и AuthService инициализируется */
.top-nav[b-46ojlnh66e]  .auth-header-skeleton {
    display: inline-block;
    width: 220px;
    height: 1.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    background-size: 200% 100%;
    animation: auth-header-shimmer-b-46ojlnh66e 1.4s ease-in-out infinite;
}

@keyframes auth-header-shimmer-b-46ojlnh66e {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.top-row[b-46ojlnh66e] {
    background-color: transparent;
    border-bottom: none;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}


    .top-row[b-46ojlnh66e]  a, .top-row[b-46ojlnh66e]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-46ojlnh66e]  a:hover, .top-row[b-46ojlnh66e]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-46ojlnh66e]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-46ojlnh66e] {
        justify-content: space-between;
    }

    .top-row[b-46ojlnh66e]  a, .top-row[b-46ojlnh66e]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .top-row[b-46ojlnh66e] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-46ojlnh66e]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-46ojlnh66e], article[b-46ojlnh66e] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-46ojlnh66e] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-46ojlnh66e] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-w6v3fayc1j] {
    appearance: none;
    cursor: pointer;
    width: calc(3.5rem * var(--scale-factor, 1));
    height: calc(2.5rem * var(--scale-factor, 1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
    border-radius: 0.375rem;
}

.navbar-toggler:hover[b-w6v3fayc1j] {
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:checked[b-w6v3fayc1j] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-w6v3fayc1j] {
    min-height: var(--navbar-height);
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-md);
    transition: min-height 0.3s ease;
}

.navbar-brand[b-w6v3fayc1j] {
    font-size: var(--font-size-lg);
    margin-right: auto;
    white-space: nowrap;
    transition: font-size 0.3s ease;
}

.nav-scrollable[b-w6v3fayc1j] {
    display: none;
    overflow-y: auto;
    max-height: calc(100vh - var(--navbar-height) - var(--spacing-lg));
    margin-top: 0.5rem;
}

.navbar-toggler:checked ~ .nav-scrollable[b-w6v3fayc1j] {
    display: flex;
    flex-direction: column;
}


.navbar-toggler[b-w6v3fayc1j] {
    display: block;
}

/* #endregion NavItem */
@media (min-width: 1px) {
    .navbar-toggler[b-w6v3fayc1j] {
        display: none;
    }

    .nav-scrollable[b-w6v3fayc1j] {
        display: flex !important;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        padding: 0.5rem var(--spacing-md) 0 var(--spacing-md);
        align-items: center;
        overflow: visible;
    }
}

/* Минимальная ширина */
@media (max-width: 1px) {
    .nav-scrollable[b-w6v3fayc1j] {
        flex-wrap: nowrap;
        gap: 0.2rem;
        padding: 0.5rem 0.35rem 0 0.35rem;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .top-row[b-w6v3fayc1j] {
        padding: 0 var(--spacing-sm);
    }

    .navbar-brand[b-w6v3fayc1j] {
        font-size: calc(var(--font-size-lg) * 0.85);
    }
}
/* /Components/Pages/Aboutus.razor.rz.scp.css */
.about-us-page[b-tlqa5drlei] {
    padding-left: 25vw;
    padding-right: 2rem;
    max-width: 100vw;
    min-height: 100vh;
    padding-bottom: 3rem;
}

.start[b-tlqa5drlei] {
    padding-top: 3rem;
}

.start h1[b-tlqa5drlei] {
    text-align: center;
    font-size: 3rem;
    background: var(--text-gradient) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    margin-bottom: 0.5rem;
}

.start .team-slogan[b-tlqa5drlei] {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.about-us-split[b-tlqa5drlei] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member[b-tlqa5drlei] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    padding: 1rem 2rem 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

/* Эффект при наведении на всю карточку */
.team-member:hover > div:last-child[b-tlqa5drlei] {
    transform: translateX(15px);
    transition: transform 0.25s ease-out;
}

.img-avatar[b-tlqa5drlei] {
    width: 10vw;
    height: 10vw;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .img-avatar[b-tlqa5drlei] {
    transform: scale(1.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #4662ed;
}

/* Текст внутри карточки */
.team-member h3[b-tlqa5drlei] {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem !important;
    background: var(--text-gradient) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
}

.team-member p[b-tlqa5drlei] {
    margin: 0.25rem 0;
    color: #ffffff;
    font-size: 1.3rem !important;
}

.info[b-tlqa5drlei] {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-us-page[b-tlqa5drlei] {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .team-member[b-tlqa5drlei] {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .img-avatar[b-tlqa5drlei] {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .info[b-tlqa5drlei] {
        font-size: 0.9rem;
    }
}
/* /Components/Pages/Main.razor.rz.scp.css */
.main-page[b-zu5o7zoax8] {
    /* Отступы после шапки: сверху и слева (вплоть до середины экрана) */
    position: relative !important;
    padding-top: 8rem !important;
    padding-left: 4vw !important;
    max-width: 50vw !important;
}

.full-page-background[b-zu5o7zoax8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/resourse/Home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-split[b-zu5o7zoax8] {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.actions[b-zu5o7zoax8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.h1[b-zu5o7zoax8] {
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0 0 7px #FFFFFF;
    font-size: 70px;
    position: relative !important;
    left: -4px !important;
}

/* ::deep нужен для того, чтобы стили достали и до .action-btn внутри дочернего компонента
   ResumeGameButton (он отдельный razor-файл со своим scope). Без ::deep кнопка "Вернуться в игру"
   рендерилась без оформления. */
.actions[b-zu5o7zoax8]  .action-btn {
    height: 3.5rem;
    padding: 0 3rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer; /* Курсор-указатель */
    transition: all 0.3s ease; /* Плавный переход */
    width: 100%;
    white-space: nowrap; /*Запрет на перенос строки*/
}

/* Эффект при наведении на активные кнопки */
.actions[b-zu5o7zoax8]  .action-btn:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Эффект при нажатии */
.actions[b-zu5o7zoax8]  .action-btn:not(:disabled):active {
    transform: translateY(0);
}

.actions[b-zu5o7zoax8]  .action-btn.action-btn-find {
    background: linear-gradient(90deg, #213585 0%, #3A5EEB 100%) !important;
}

.actions[b-zu5o7zoax8]  .action-btn.action-btn-bot {
    background: linear-gradient(90deg, #213585 0%, #3A5EEB 100%) !important;
}

.actions[b-zu5o7zoax8]  .action-btn.action-btn-resume {
    background: linear-gradient(90deg, #535353 0%, #A85253 100%);
}

/* Таблица лидеров — тёмная полупрозрачная тема */
.leaderboard-table[b-zu5o7zoax8] {
    margin-top: 0 !important;
    margin-left: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem;
    background: transparent;
}

.leaderboard-table table[b-zu5o7zoax8] {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff; /* белый текст для всей таблицы */
    background: transparent;
}

/* Общие стили для всех ячеек */
.leaderboard-table th[b-zu5o7zoax8],
.leaderboard-table td[b-zu5o7zoax8] {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Ячейки данных — полупрозрачный синий фон (светлее, чем у заголовков) */
.leaderboard-table td[b-zu5o7zoax8] {
    background: rgba(50, 90, 190, 0.3);
    font-size: 1rem; /* нормальный размер */
    color: #ffffff;
    text-align: center;
}

/* Строка с заголовком "Лидеры" */
.leaderboard-table thead tr:first-child th[b-zu5o7zoax8] {
    text-align: left; /* слева */
    font-size: 1.2rem; /* большой текст */
    font-weight: bold;
    background: rgba(50, 90, 190, 0.5); /* самый тёмный фон */
    color: #ffffff;
    padding: 16px 20px;
    letter-spacing: 0.5px;
}

/* Строка с заголовками колонок (#, Никнейм, Ранг) */
.leaderboard-table thead tr:nth-child(2) th[b-zu5o7zoax8] {
    background: rgba(50, 90, 190, 0.4); /* темнее, чем у данных */
    color: #ffffff;
    text-align: center;
    font-size: 0.6rem;        /* маленький текст */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Эффект при наведении на строки данных */
.leaderboard-table tbody tr:hover td[b-zu5o7zoax8] {
    background: rgba(50, 90, 190, 0.2);
    transition: background 0.2s ease;
}

/* Стиль загрузки */
.loading[b-zu5o7zoax8] {
    text-align: center;
    padding: 2rem;
    color: #cccccc;
    background: rgba(50, 90, 190, 0.3);
    border-radius: 8px;
}

.boxes[b-zu5o7zoax8] {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 0.5rem;
}

.theme-badge[b-zu5o7zoax8] {
    background: rgba(50, 90, 190, 0.4); /* темнее, чем у данных */
    border-left: 6px solid #2196f3;
    min-width: 200px; /* минимальная ширина */
    max-width: 250px; /* максимальная ширина */
    border-radius: 8px;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    margin: 1rem 0;
}

.theme-badge + .theme-badge[b-zu5o7zoax8] {
    margin-left: 0.5rem;
}

.theme-badge:hover[b-zu5o7zoax8] {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .main-page[b-zu5o7zoax8] {
        max-width: none;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .main-split[b-zu5o7zoax8] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* /Components/Pages/Profile.razor.rz.scp.css */
.profile-page[b-j4hrzwx32m] {
    min-height: calc(100vh - 4rem);
}

[b-j4hrzwx32m] .input-card {
    margin-left: auto;
    margin-right: auto;
}

[b-j4hrzwx32m] .img-avatar-big {
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.username[b-j4hrzwx32m] {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.stats[b-j4hrzwx32m] {
    display: flex;
    justify-content: center;
}

.stat-card[b-j4hrzwx32m] {
    text-align: center;
    margin: 0.5rem;
    padding: 0.5rem;
    /* border: 1px solid var(--input-border); */
    border-radius: 12px;
}

@media (max-width: 768px) {
    .profile-page[b-j4hrzwx32m] {
        padding-top: 3rem;
    }
}
/* /Components/Pages/Rules.razor.rz.scp.css */
.rules-page[b-knqwdk71yr] {
        padding-top: 3rem;
        padding-left: 20vw;
        max-width: 75vw;
    }

    .rules-split[b-knqwdk71yr] {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

    /* Убираем линию у последнего блока */
    .rules-split:last-of-type[b-knqwdk71yr] {
        border-bottom: none;
    }

    /* Стили для правила 3 (много фото напротив текста) */
    .rule3-container[b-knqwdk71yr] {
        display: block !important; /* Отключаем стандартную сетку для этого блока */
    }

    .rule3-rules-title[b-knqwdk71yr] {
        font-size: 1.4rem;
        margin: 0 0 1rem 0;
        color: #F0D89A;
        border-left: 4px solid #D4AF37;
        padding-left: 0.75rem;
    }

    .pieces-list[b-knqwdk71yr] {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .piece-item[b-knqwdk71yr] {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.2rem;
    }

    .piece-item:last-child[b-knqwdk71yr] {
        border-bottom: none;
        padding-bottom: 0;
    }

    .piece-text[b-knqwdk71yr] {
        flex: 2;
        min-width: 200px;
    }

    .piece-text h5[b-knqwdk71yr] {
        margin: 0 0 0.5rem 0;
        font-size: 1.1rem;
        color: #E8BC9E;
    }

    .piece-text p[b-knqwdk71yr] {
        margin: 0;
        line-height: 1.4;
    }

    .piece-img[b-knqwdk71yr] {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .piece-img img[b-knqwdk71yr] {
        max-width: 100%;
        max-height: 130px;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        background: #1a1e26;
    }

    /* Общие стили для фото-контейнеров */
    .rule-photo-placeholder[b-knqwdk71yr] {
        border: 1px dashed rgba(255, 255, 255, 0.3);
        border-radius: 1rem;
        padding: 1rem;
        text-align: center;
        color: #A8B2C1;
        font-size: 0.9rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        gap: 0.75rem;
    }

    /* Для одиночных изображений */
    .rule-photo-placeholder img[b-knqwdk71yr] {
        max-width: 100%;
        max-height: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    /* Для двух изображений в ряду (правила 4,5,6) */
    .double-images[b-knqwdk71yr] {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .double-images .image-item[b-knqwdk71yr] {
        flex: 1;
        min-width: 130px;
        text-align: center;
    }

    .double-images .image-item img[b-knqwdk71yr] {
        max-height: 150px;
    }

    .photo-caption[b-knqwdk71yr] {
        font-size: 0.8rem;
        color: #FFE5A3;
        display: block;
        margin-top: 0.5rem;
        font-weight: normal;
    }

    h1[b-knqwdk71yr] {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #F5E7D9, #E8BC9E);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    h2[b-knqwdk71yr] {
        font-size: 1.6rem;
        color: #D4AF37;
        margin: 0.5rem 0;
    }

    h3[b-knqwdk71yr] {
        font-size: 1.2rem;
        font-weight: normal;
        color: #B0B7C4;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    h4[b-knqwdk71yr] {
        font-size: 1.4rem;
        margin: 0 0 0.5rem;
        color: #F0D89A;
        border-left: 4px solid #D4AF37;
        padding-left: 0.75rem;
    }

    .rule-text p[b-knqwdk71yr], .rule-text ul[b-knqwdk71yr] {
        line-height: 1.5;
        margin: 0.5rem 0;
    }

    .rule-text ul[b-knqwdk71yr] {
        padding-left: 1.2rem;
        list-style-type: none;
    }

    .rule-text li[b-knqwdk71yr] {
        margin: 0.3rem 0;
    }

    /* Финальное фото Гослинга */
    .final-rule[b-knqwdk71yr] {
        margin-top: 2rem;
        border-radius: 1rem;
        padding: 0;
        background: transparent;
    }

    .gosling-photo[b-knqwdk71yr] {
        flex-direction: column;
        border: none;
        gap: 0.5rem;
        background: transparent;
    }

    .gosling-photo img[b-knqwdk71yr] {
        max-width: 100%;
        max-height: 300px;
        width: auto;
        border-radius: 1rem;
        border: 2px solid #D4AF37;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .footer-note[b-knqwdk71yr] {
        text-align: center;
        margin-top: 3rem;
        padding-top: 1rem;
        font-style: italic;
        color: #A7B3C5;
        font-size: 0.9rem;
    }

    @media (max-width: 900px) {
        .rules-page[b-knqwdk71yr] {
            width: 95%;
            padding-top: 2rem;
            padding-left: 5vw;
            max-width: 90vw;
        }

        .rules-split[b-knqwdk71yr] {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .piece-item[b-knqwdk71yr] {
            flex-direction: column;
        }

        .piece-img[b-knqwdk71yr] {
            text-align: left;
        }

        .double-images[b-knqwdk71yr] {
            flex-direction: column !important;
        }

        h1[b-knqwdk71yr] {
            font-size: 2rem;
        }

        h2[b-knqwdk71yr] {
            font-size: 1.3rem;
        }

        h3[b-knqwdk71yr] {
            font-size: 1rem;
        }
    }
