* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    height: 100%;
    font-family: sans-serif;
}

body {
    overflow-x: hidden;
    position: relative;
    background: #f5f5f5;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #031D41;
}

main p,
main span,
main b,
main li {
    color: #98C0F4;
}

main h1,
main h2,
main h3,
main h4,
main h5 {
    color: #E9F9FF;
}

main h1 {
    font-size: 40px;
}

main figcaption {
    color: #E9F9FF;
}

main a {
    font-size: 18px;
    line-height: 28px;
    color: #E9F9FF;
    text-decoration: underline;
}

main a:hover {
    text-decoration: underline;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main ol,
main ul,
main figure,
main .general-table,
main .faq-container {
    margin: 0 auto;
    width: 100%;
}

main h1,
main h2,
main h3,
main h4 {
    text-align: left;
    padding-bottom: 10px;
}

main figure {
    margin: 0 auto;
    padding-bottom: 20px;
}

main p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

main .wrapper {
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;
}

main h2,
main h3,
main h4 {
    padding-bottom: 20px;
}

main img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    height: auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
    transition: .3s;
}

input,
button,
.buttons a {
    border: none;
    box-shadow: none;
    transition: .3s;
}

input {
    outline: none;
}

p,
span,
li,
a {
    font-size: 18px;
    line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e24;
}

h1 {
    font-size: 34px;
    line-height: 38px;
}

h2 {
    font-size: 32px;
    line-height: 40px;
}

h3 {
    font-size: 26px;
    line-height: 36px;
}

h4 {
    font-size: 16px;
    line-height: 18px;
}

h5,
h6 {
    font-size: 14px;
    line-height: 16px;
}

p,
span,
li,
h1,
h2,
h3,
a,
b,
i,
label,
input,
button,
figcaption {
    color: #1e1e24;
}

p {
    padding-bottom: 20px;
}

li {
    list-style: none;
}

button {
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
}

img {
    max-width: 100%;
    display: block;
}

i {
    font-style: normal;
}

.content {
    position: relative;
    flex-grow: 1;
    max-width: 1180px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 40px 20px 20px 20px;
    width: 100%;
}

.content .content-block {
    margin-bottom: 20px;
    border-radius: 20px;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0);
}

ol {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 20px;
    counter-reset: counter-ol;
    padding-left: 20px;
}

ol li {
    position: relative;
    padding-left: 0;
    margin-bottom: 10px;
    padding-left: 20px;
    counter-increment: counter-ol;
    font-size: 18px;
    line-height: 28px;
}

ol li::before {
    position: absolute;
    content: counter(counter-ol);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #E9F9FF;
    border-radius: 50%;
    top: 2px;
    left: -10px;
}

ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex-direction: column;
    padding: 10px;
}

ul li {
    position: relative;
    padding-bottom: 10px;
    margin-left: 30px;
    font-size: 18px;
    line-height: 28px;
    list-style: circle;
}

.buttons {
    display: flex;
    align-items: center;
}

figure {
    margin-bottom: 20px;
    text-align: center;
}

figure span {
    height: 50%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -50%;
}

figcaption {
    color: #1e1e24;
    font-size: 14px;
}

/* FAQ */
.faq-container .faq-item {
    margin: 0 auto;
    position: relative;
    min-height: 30px;
    border-left: 5px solid #66F2FF;
    background: #fff;
    padding: 15px 50px 0px 15px;
    margin-bottom: 20px;
}

.faq-container .faq-item:last-child {
    border-bottom: none;
}

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
    background: #63b0e8;
}

.faq-container .faq-item:hover {
    border-color: #63b0e8;
}

.faq-container .faq-item:hover .faq-question {
    color: #63b0e8;
}

.faq-container .faq-question {
    padding-bottom: 0;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
}

.faq-container .faq-answer {
    padding: 10px 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    transition: .4s ease;
}

.faq-container .icon {
    height: 18px;
    position: absolute;
    width: 18px;
    right: 10px;
    top: 30px;
    z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
    background: #000;
    content: "";
    height: 4px;
    right: 50px;
    position: absolute;
    top: 0;
    width: 18px;
    transition: transform 500ms ease;
}

.faq-container .toggle {
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    z-index: 3;
}

.faq-container .toggle:checked~.icon::before,
.faq-container .toggle:checked~.icon::after {
    background: #000;
}

.faq-container .toggle:checked~.faq-question {
    color: #000;
}

.faq-container .toggle:not(:checked)~.icon:before {
    transform: rotate(180deg);
}

.faq-container .toggle:not(:checked)~.icon:after {
    transform: rotate(90deg);
}

.faq-container .toggle:checked~.faq-answer {
    height: auto;
    opacity: 1;
    z-index: 2;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media screen and (max-width: 1250px) {
    main .wrapper {
        padding: 0 10px;
    }

    .content .contentMain {
        width: 100%;
    }

    .footer-block-btn .buttons {
        justify-content: space-between;
        width: 100%;
    }

    .footer-block-btn .buttons .regButton,
    .footer-block-btn .buttons .logButton {
        padding: 7px 5px;
        width: 48%;
    }
}

@media screen and (max-width: 780px) {
    h1 {
        font-size: 26px;
        line-height: 36px;
    }

    h2 {
        font-size: 22px;
        line-height: 30px;
    }

    h3 {
        font-size: 20px;
        line-height: 28px;
    }

    h4,
    h5,
    h6 {
        font-size: 18px;
        line-height: 26px;
    }

    p,
    li,
    span,
    b,
    i,
    tr,
    td,
    main p,
    .content ul li,
    .lexical-table tr td {
        font-size: 16px;
        line-height: 24px;
    }

    .content {
        margin-bottom: 0px;
        padding: 25px 20px 0px 20px;
    }

    .header .menu .logo img {
        max-width: 120px;
    }
}

@media screen and (max-width: 400px) {
    .lexical-table {
        overflow-x: auto;
        max-width: 100%;
        display: flex;
    }

    .header .menu .logo img {
        max-width: 100px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(0deg, #051833, #051833),
        linear-gradient(90deg, rgba(15, 39, 94, 0) 85%, rgba(15, 39, 94, 0.7) 100%),
        linear-gradient(90deg, rgba(25, 52, 116, 0.49) 0%, rgba(15, 39, 94, 0) 35.14%);
    padding: 20px 0;
}

.footer .footerInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.footer .footerInner img {
    margin: 0 auto;
    object-fit: contain;
}

.footer .footerInner .copyright {
    display: block;
    color: #fff;
    font-size: 15px;
    padding-bottom: 10px;
}

.footer .footerInner .copyright a {
    color: #f6ef33;
    cursor: pointer;
}

.footer .scrollTop {
    background: #2b6ba8;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 90px;
    right: 30px;
    opacity: 0;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
}

.footer .scrollTop img {
    max-width: 60%;
}

.footer .scrollTop.pam_content {
    opacity: 1;
}

.footer-block-btn {
    z-index: 4;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 60px;
    padding-right: 10px;
    padding-left: 10px;
    background: linear-gradient(0deg, #051833, #051833),
        linear-gradient(90deg, rgba(15, 39, 94, 0) 85%, rgba(15, 39, 94, 0.7) 100%),
        linear-gradient(90deg, rgba(25, 52, 116, 0.49) 0%, rgba(15, 39, 94, 0) 35.14%);
    display: none;
    justify-content: center;
    align-items: center;
}

.footer-block-btn .buttons {
    display: flex;
}

@media(max-width: 1200px) {
    .footer-block-btn {
        display: flex;
    }

    .footer {
        padding-bottom: 80px;
    }

    .footer .footerInner {
        padding: 0 20px;
    }

    .footer .footerInner img {
        display: none;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 5px 0;
    height: 75px;
    background: linear-gradient(0deg, #051833, #051833),
        linear-gradient(90deg, rgba(15, 39, 94, 0) 85%, rgba(15, 39, 94, 0.7) 100%),
        linear-gradient(90deg, rgba(25, 52, 116, 0.49) 0%, rgba(15, 39, 94, 0) 35.14%);
}

.header .headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.header .headerInner .logo a {
    display: block;
}

.header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header .menu .logo {
    display: flex;
}

.header .menu .logo a {
    padding: 0 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .menu .logo img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
}

.header .menu .links_buttons {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.header .menu .links {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.header .menu a {
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 5px;
    text-decoration: none;
    color: #E9F9FF;
    text-shadow: 0px 0px 4px #00B2FFB2;
}

.header .menu a:last-child {
    margin-right: 0;
}

.header .menu a:hover {
    color: #fff;
}

.header .menu a.active {
    color: #f6ef33;
}

.header .buttons .logButton,
.footer-block-btn .buttons .logButton {
    padding: 10px 36px;
    border-radius: 10px;
    gap: 2px;
    opacity: 1;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    margin-right: 10px;
    background: radial-gradient(60.71% 59.18% at 39.29% 34%, #FFA100 0%, #B23301 77.32%);
    border: 1px solid #FFA100;
    box-shadow: 0px 0px 15px 0px #D80000BF, 0px 0px 9px 0px #992222F2 inset;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-login 1.5s infinite;
    line-height: 1;
    text-decoration: none;
}

.footer-block-btn .buttons .logButton {
    padding: 10px 20px;
}

.header .buttons .logButton:hover,
.header .buttons .logButton:active,
.footer-block-btn .buttons .logButton:hover,
.footer-block-btn .buttons .logButton:active {
    opacity: 0.9;
}

@keyframes pulse-login {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 161, 0, 0.7), 0px 0px 9px 0px #992222F2 inset;
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 161, 0, 0), 0px 0px 9px 0px #992222F2 inset;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 161, 0, 0), 0px 0px 9px 0px #992222F2 inset;
    }
}

.header .buttons .regButton,
.footer-block-btn .buttons .regButton {
    padding: 10px 36px;
    border-radius: 10px;
    gap: 2px;
    opacity: 1;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    margin-right: 10px;
    background: radial-gradient(52.32% 50.33% at 52.32% 49.67%, #309AF1 0%, #002D5B 70%);
    border: 1px solid #48A7FF;
    box-shadow: 0px 0px 15px 0px #0048D8BF, 0px 0px 9px 0px #227199F2 inset;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.header .buttons .regButton:hover,
.header .buttons .regButton:active,
.footer-block-btn .buttons .regButton:hover,
.footer-block-btn .buttons .regButton:active {
    filter: drop-shadow(1px 1px 6px #2b6ba8);
}

@media screen and (max-width: 1250px) {
    .header .menu {
        padding: 0 0;
    }

    .header .menu .links_buttons {
        display: none;
    }

    .header .headerInner {
        padding: 0 20px;
    }

    .header .menu .logo img {
        max-width: 150px;
    }

    .header .buttons {
        display: none;
    }

    .header .buttons .regButton {
        margin-right: 0;
    }

    .header .buttons .regButton,
    .header .buttons .logButton {
        font-size: 16px;
    }
}

/* Burger menu */
.burger {
    display: none;
    position: relative;
}

.mobileMenu {
    position: fixed;
    top: 0;
    right: 0%;
    display: block;
    z-index: 5;
    background: linear-gradient(0deg, #051833, #051833), linear-gradient(90deg, rgba(15, 39, 94, 0) 85%, rgba(15, 39, 94, 0.7) 100%), linear-gradient(90deg, rgba(25, 52, 116, 0.49) 0%, rgba(15, 39, 94, 0) 35.14%);
    width: 100%;
    max-width: 350px;
    min-height: 100vh;
    padding: 20px 30px;
    transition: right .8s;
}

.mobileMenu .buttons {
    display: block;
    margin-top: 32px;
}

.mobileMenu .buttons button {
    display: block;
    margin: 0 auto 12px;
    width: 50%;
}

.mobileMenu[hidden] {
    right: -200%;
}

.mobileMenu .mobileMenuTop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mobileMenu .mobileMenuLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobileMenu .mobileMenuLinks a {
    color: #E9F9FF;
    text-shadow: 0px 0px 4px #00B2FFB2;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
}

.mobileMenu .mobileMenuLinks a.active {
    color: #f6ef33;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    display: block;
}

.overlay[hidden] {
    display: none;
}

@media screen and (max-width: 1250px) {
    .burger {
        display: block;
        width: 35px;
        height: auto;
    }

    .close {
        display: block;
        width: 35px;
        height: auto;
    }
}

/* Main Banner */
.mainBanner {
    height: 408px;
    margin-bottom: 0;
    margin-top: 62px;
    background: url("../img/banner.webp") no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.mainBannerInner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    background: #0000004a;
}

.mainBannerInner .mainBannerText {
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .mainBannerInner .mainBannerText {
        max-width: 350px;
    }

    .banner-heading {
        font-size: 45px;
    }
}

.mainBannerInner .mainBannerText p {
    padding-bottom: 0;
    margin-bottom: 0;
    font-family: Tahoma, sans-serif;
}

.mainBanner .btn-banner {
    position: relative;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-family: Tahoma, sans-serif;
    cursor: pointer;
    min-width: 240px;
    height: 62px;
    margin-top: 30px;
    background: radial-gradient(140.26% 186.82% at 50% 39.23%, #FE6E00 18.01%, #FFD089 63.04%, #FFFBC2 100%),
        radial-gradient(39.03% 81.59% at 50% 114.67%, #FFC35A 0%, rgb(255 225 0 / 48%) 100%),
        linear-gradient(180deg, rgb(255 255 255 / 44%) 48.08%, rgb(0 0 0 / 25%) 51.44%);
    overflow: hidden;
    background-blend-mode: overlay;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    border-radius: 24px;
    padding: 10px 25px;
    justify-content: center;
}

.mainBanner .btn-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.mainBanner .btn-banner:hover {
    opacity: .85;
}

.mainBanner .btn-banner span {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    -webkit-text-stroke: 1px #B23301;
    text-shadow: 0px 3px 3px #AF032E80;
    font-family: "Tahoma", sans-serif;
    font-weight: 800;
}

@media(max-width: 1250px) {
    .mainBanner {
        min-height: 300px;
    }

    .mainBanner .btn-banner {
        padding: 10px 20px;
        max-width: 300px;
        width: 97%;
        height: 50px;
        min-width: 200px;
    }

    main h1 {
        font-size: 25px;
    }

    .mainBanner .btn-banner span {
        color: #fff;
        font-size: 17px;
        line-height: 20px;
    }

    .mainBannerInner {
        max-width: 800px;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .9);
    z-index: 10000;
    height: 100%;
    padding: 5px;
    opacity: 0;
    pointer-events: none;
}

.modal:target {
    opacity: 1;
    pointer-events: auto;
}

.modal .close {
    position: absolute;
    right: 100px;
    top: 30px;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    background: #0265a7;
    width: 30px;
    height: 30px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .close:hover {
    background: #007acc;
}

.modal_inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal_inner img {
    width: 280px;
    height: 572px;
}

@media screen and (max-width: 1200px) {
    .modal_inner img {
        width: 220px;
        height: 449px;
    }
}

@media screen and (max-width: 550px) {
    .modal .close {
        right: 20px;
        top: 10px;
    }
}

/* Footer disclaimer & copyright */
.footer__disclaimer {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.copyright {
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.footer-logo-link img {
    max-width: 190px;
    width: 100%;
}

/* Footer menu */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    padding: 20px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu a {
    color: #E9F9FF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f6ef33;
}

@media (max-width: 768px) {
    .footer-menu {
        gap: 10px 20px;
        padding: 15px 0;
    }

    .footer-menu a {
        font-size: 12px;
    }
}

/* Tables */
.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    white-space: nowrap;
    background: #051833;
}

.lexical-table td p {
    padding: 0;
}

.lexical-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {

    .lexical-table td,
    .lexical-table th {
        padding: 6px;
        font-size: 14px;
    }
}

/* Banner text */
.banner-heading {
    color: #fff;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
    .banner-heading {
        font-size: 45px;
    }
}

.banner-sub {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    margin-top: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !important;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}
