:root {
    --primary: #6C5CE7;
    --secondary: #A29BFE;
    --accent: #00CEC9;
    --background: #FFFFFF;
    --surface: #F9FAFB;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --success: #00B894;
    --warning: #FDCB6E;
    --error: #FF7675;
    --border-color: #EFEFEF;
    --radius-card: 16px;
    --radius-pill: 50px;
}

.site-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-radius: var(--radius-pill);
    text-transform: none;
    font-weight: 500;
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-pill);
    text-transform: none;
    font-weight: 500;
}

.game-card {
    background: var(--background);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15);
}

.glass-surface {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== header ===== */
.header-section .navbar {
    min-height: 80px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #EFEFEF;
}

.header-section .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 1.5rem;
}

.header-section .navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-section .nav-link {
    font-family: 'Inter', sans-serif;
    color: #636E72;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.header-section .nav-link:hover {
    color: #6C5CE7;
}

.header-section .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #2D3436;
    padding: 0.25rem;
}

.header-section .navbar-toggler:focus {
    shadow: none;
    outline: none;
}

.header-section .btn-primary {
    background-color: #6C5CE7;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
}

.header-section .btn-primary:hover {
    background-color: #A29BFE;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.3);
}

@media (max-width: 991.98px) {
    .header-section .navbar-collapse {
        background: #FFFFFF;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header-section .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #F9FAFB;
    }

    .header-section .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .header-section .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero_section ===== */
.hero-vox-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    position: relative;
}

.hero-vox-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-vox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero-vox-block .container {
    z-index: 2;
}

.hero-vox-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2D3436;
    text-transform: uppercase;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .hero-vox-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .hero-vox-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
}

.hero-vox-block .text-primary-color {
    color: #6C5CE7;
}

.hero-vox-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #636E72;
    max-width: 550px;
}

.hero-vox-btn-primary {
    background-color: #6C5CE7 !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.hero-vox-btn-primary:hover {
    transform: translateY(-2px);
    background-color: #A29BFE !important;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.hero-vox-btn-secondary {
    background-color: transparent !important;
    color: #6C5CE7 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border: 2px solid #6C5CE7 !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-vox-btn-secondary:hover {
    background-color: rgba(108, 92, 231, 0.05) !important;
    transform: translateY(-2px);
}

.hero-vox-visual-wrapper {
    position: relative;
    padding: 20px;
}

.hero-vox-visual-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease-in-out;
}

.hero-vox-visual-img:hover {
    transform: scale(1.03);
}

.hero-vox-pattern {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #A29BFE 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .hero-vox-title {
        font-size: 2.5rem;
    }

    .hero-vox-overlay {
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 767.98px) {
    .hero-vox-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-vox-lead {
        font-size: 0.875rem;
    }

    .hero-vox-block {
        text-align: center;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-vox-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-vox-btn-primary,
    .hero-vox-btn-secondary {
        width: 100%;
    }
}

/* ===== random_game ===== */
.vox-random-game {
    background-color: #F9FAFB;
    overflow: hidden;
    position: relative;
}

.vox-random-game__card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
    border: 1px solid #EFEFEF;
    position: relative;
    transition: transform 0.3s ease;
}

.vox-random-game__card:hover {
    transform: translateY(-5px);
}

.vox-random-game__visual {
    max-width: 240px;
    margin: 0 auto;
    position: relative;
}

.vox-random-game__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.vox-random-game__heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 2rem;
}

.vox-random-game__description {
    font-family: 'Inter', sans-serif;
    color: #636E72;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.vox-random-game__button {
    background-color: #6C5CE7;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.vox-random-game__button:hover {
    background-color: #A29BFE;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    color: #FFFFFF;
}

.vox-random-game__button i {
    font-size: 1.4rem;
}

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

    .vox-random-game__description {
        font-size: 0.95rem;
    }

    .vox-random-game__button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== game_of_the_day ===== */
.vox-game-day {
    background-color: #F9FAFB;
    padding: 40px 0;
}

.vox-game-day__card {
    background-color: #FFFFFF;
    border: 1px solid #EFEFEF;
    transition: transform 0.3s ease;
}

.vox-game-day__img-container {
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background-color: #EFEFEF;
}

.vox-game-day__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vox-game-day__img-container:hover .vox-game-day__img {
    transform: scale(1.04);
}

.vox-game-day__badge-wrapper .badge {
    background-color: #6C5CE7 !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.vox-game-day__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #2D3436;
    line-height: 1.2;
}

.vox-game-day__description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #636E72;
    line-height: 1.7;
}

.vox-game-day__btn {
    background-color: #6C5CE7 !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none;
}

.vox-game-day__btn:hover {
    background-color: #A29BFE !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4) !important;
}

@media (max-width: 991px) {
    .vox-game-day__img-container {
        min-height: 280px;
    }

    .vox-game-day__content {
        padding: 35px 25px !important;
    }

    .vox-game-day__title {
        font-size: 1.6rem;
    }

    .vox-game-day__description {
        font-size: 0.95rem;
    }
}

/* ===== game_categories ===== */
.vox-game-categories {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.vox-game-categories .vox-section-title {
    font-family: 'Montserrat', sans-serif;
    color: #2D3436;
    font-weight: 700;
    line-height: 1.2;
}

.vox-game-categories .vox-section-subtitle {
    color: #636E72;
    font-size: 1rem;
}

.vox-game-categories .vox-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #F9FAFB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vox-game-categories .vox-category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.vox-game-categories .vox-category-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.vox-game-categories .vox-category-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.vox-game-categories .vox-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vox-game-categories .vox-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.vox-game-categories .vox-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vox-game-categories .vox-category-icon {
    font-size: 2rem;
    color: #00CEC9;
}

.vox-game-categories .vox-category-title {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.vox-game-categories .vox-btn-primary {
    display: inline-block;
    background-color: #6C5CE7;
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.vox-game-categories .vox-btn-primary:hover {
    background-color: #A29BFE;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .vox-game-categories .vox-section-title {
        font-size: 16px !important;
    }

    .vox-game-categories .vox-category-title {
        font-size: 14px !important;
    }

    .vox-game-categories .vox-section-subtitle {
        font-size: 0.9rem;
    }

    .vox-game-categories .vox-category-image-wrapper {
        height: 180px;
    }
}

/* ===== controls_rules ===== */
.controls-rules {
    background-color: #FFFFFF;
    color: #2D3436;
    font-family: 'Inter', sans-serif;
}

.controls-rules h2,
.controls-rules h3,
.controls-rules h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2D3436;
}

.controls-rules .bg-surface {
    background-color: #F9FAFB;
}

.controls-rules .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0edff;
    border-radius: 12px;
}

.controls-rules .kbd-key {
    display: inline-block;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: #6C5CE7;
    white-space: nowrap;
    background-color: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
    box-shadow: 0 3px 0 #EFEFEF;
}

.controls-rules .card {
    border-radius: 16px;
    transition: transform 0.2s ease, shadow 0.2s ease;
}

.controls-rules .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.1) !important;
}

.controls-rules .btn-primary {
    background-color: #6C5CE7 !important;
    border-color: #6C5CE7 !important;
    box-shadow: none;
}

.controls-rules .text-primary {
    color: #6C5CE7 !important;
}

.controls-rules .text-accent {
    color: #00CEC9 !important;
}

.controls-rules .btn-link {
    text-decoration: none;
}

@media (max-width: 767px) {
    .controls-rules h2 {
        font-size: 1.5rem !important;
    }

    .controls-rules h3 {
        font-size: 1rem !important;
    }

    .controls-rules .lead {
        font-size: 0.9rem;
    }
}

/* ===== all_games_grid ===== */
.all-games-grid {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.all-games-grid__heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 2.5rem;
}

.all-games-grid__description {
    color: #636E72;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.all-games-grid__card {
    background-color: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.all-games-grid__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.all-games-grid__img-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.all-games-grid__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.all-games-grid__card:hover .all-games-grid__image {
    transform: scale(1.05);
}

.all-games-grid__content {
    flex-grow: 1;
}

.all-games-grid__title-link {
    text-decoration: none;
    display: block;
}

.all-games-grid__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2D3436;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.all-games-grid__title-link:hover .all-games-grid__title {
    color: #6C5CE7;
}

.all-games-grid__btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #6C5CE7;
    color: #FFFFFF !important;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.all-games-grid__btn:hover {
    background-color: #A29BFE;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .all-games-grid__heading {
        font-size: 1.5rem;
    }

    .all-games-grid__description {
        font-size: 0.95rem;
    }

    .all-games-grid__title {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
.voxinaslf-footer {
    background-color: #F9FAFB;
    padding: 80px 0 30px 0;
    border-top: 1px solid #EFEFEF;
    font-family: 'Inter', sans-serif;
    color: #2D3436;
}

.voxinaslf-footer .voxinaslf-footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.voxinaslf-footer .voxinaslf-footer-logo:hover {
    transform: scale(1.05);
}

.voxinaslf-footer .voxinaslf-footer-description {
    color: #636E72;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    max-width: 400px;
}

.voxinaslf-footer .voxinaslf-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D3436;
    margin-bottom: 1.5rem;
    position: relative;
}

.voxinaslf-footer .voxinaslf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voxinaslf-footer .voxinaslf-footer-links li {
    margin-bottom: 0.75rem;
}

.voxinaslf-footer .voxinaslf-footer-links a {
    color: #636E72;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.voxinaslf-footer .voxinaslf-footer-links a:hover {
    color: #6C5CE7;
    padding-left: 5px;
}

.voxinaslf-footer .voxinaslf-footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    width: fit-content;
}

.voxinaslf-footer .voxinaslf-footer-badge i {
    font-size: 1.25rem;
    color: #00CEC9;
}

.voxinaslf-footer .voxinaslf-footer-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #636E72;
}

.voxinaslf-footer .voxinaslf-footer-divider {
    margin: 40px 0 25px 0;
    opacity: 0.1;
    background-color: #2D3436;
}

.voxinaslf-footer .voxinaslf-footer-bottom {
    font-size: 0.9rem;
    color: #636E72;
}

.voxinaslf-footer .voxinaslf-footer-tagline {
    font-weight: 600;
    color: #6C5CE7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

@media (max-width: 767px) {
    .voxinaslf-footer {
        padding: 60px 0 20px 0;
        text-align: center;
    }

    .voxinaslf-footer .voxinaslf-footer-description {
        margin: 1.5rem auto;
    }

    .voxinaslf-footer .voxinaslf-footer-badge {
        margin: 0 auto;
    }

    .voxinaslf-footer .voxinaslf-footer-links li {
        margin-bottom: 0.5rem;
    }

    .voxinaslf-footer .voxinaslf-footer-links a:hover {
        padding-left: 0;
    }
}

.header-section .navbar {
    min-height: 80px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #EFEFEF;
}

.header-section .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 1.5rem;
}

.header-section .navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-section .nav-link {
    font-family: 'Inter', sans-serif;
    color: #636E72;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.header-section .nav-link:hover {
    color: #6C5CE7;
}

.header-section .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #2D3436;
    padding: 0.25rem;
}

.header-section .navbar-toggler:focus {
    shadow: none;
    outline: none;
}

.header-section .btn-primary {
    background-color: #6C5CE7;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
}

.header-section .btn-primary:hover {
    background-color: #A29BFE;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.3);
}

@media (max-width: 991.98px) {
    .header-section .navbar-collapse {
        background: #FFFFFF;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header-section .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #F9FAFB;
    }

    .header-section .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

.hero-vox-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    position: relative;
}

.hero-vox-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-vox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero-vox-block .container {
    z-index: 2;
}

.hero-vox-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2D3436;
    text-transform: uppercase;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .hero-vox-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .hero-vox-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
}

.hero-vox-block .text-primary-color {
    color: #6C5CE7;
}

.hero-vox-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #636E72;
    max-width: 550px;
}

.hero-vox-btn-primary {
    background-color: #6C5CE7 !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.hero-vox-btn-primary:hover {
    transform: translateY(-2px);
    background-color: #A29BFE !important;
}

.hero-vox-btn-secondary {
    background-color: transparent !important;
    color: #6C5CE7 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border: 2px solid #6C5CE7 !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-vox-visual-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease-in-out;
}

.game-grid-block {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.game-grid-block .vox-search-wrapper {
    max-width: 700px;
    margin: 0 auto 50px;
}

.game-grid-block .vox-search-input {
    border: 2px solid #EFEFEF;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
}

.game-grid-block .vox-search-input:focus {
    box-shadow: none;
    border-color: #6C5CE7;
}

.game-grid-block .vox-filter-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.game-grid-block .vox-filter-btn {
    border: 2px solid #EFEFEF;
    border-radius: 50px;
    padding: 8px 24px;
    background: #FFFFFF;
    color: #636E72;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.game-grid-block .vox-filter-btn.active,
.game-grid-block .vox-filter-btn:hover {
    background: #6C5CE7;
    border-color: #6C5CE7;
    color: #FFFFFF;
}

.game-grid-block .vox-game-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EFEFEF;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-grid-block .vox-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.game-grid-block .vox-game-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-grid-block .vox-game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-grid-block .vox-game-card:hover .vox-game-img-wrapper img {
    transform: scale(1.1);
}

.game-grid-block .vox-game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00CEC9;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.game-grid-block .vox-game-content {
    padding: 20px;
    text-align: center;
}

.game-grid-block .vox-game-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D3436;
    margin-bottom: 15px;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-grid-block .vox-game-btn {
    background: #6C5CE7;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    width: 100%;
    transition: background 0.3s ease;
    border: none;
}

.game-grid-block .vox-game-btn:hover {
    background: #A29BFE;
    color: #FFFFFF;
}

.voxinaslf-footer {
    background-color: #F9FAFB;
    padding: 80px 0 30px 0;
    border-top: 1px solid #EFEFEF;
    font-family: 'Inter', sans-serif;
    color: #2D3436;
}

.voxinaslf-footer .voxinaslf-footer-logo {
    max-width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.voxinaslf-footer .voxinaslf-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.voxinaslf-footer .voxinaslf-footer-links {
    list-style: none;
    padding: 0;
}

.voxinaslf-footer .voxinaslf-footer-links a {
    color: #636E72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.voxinaslf-footer .voxinaslf-footer-links a:hover {
    color: #6C5CE7;
}


/* ===== PAGE: about-us ===== */
.vox-about-content {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  --vox-primary: #6C5CE7;
  --vox-accent-soft: rgba(108, 92, 231, 0.1);
}

.vox-about-content h1, .vox-about-content h2 {
  font-family: 'Montserrat', sans-serif;
}

.vox-about-content .vox-value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vox-about-content .vox-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.vox-about-content .btn {
  transition: all 0.3s ease;
  box-shadow: none;
  text-transform: none;
  font-weight: 600;
}

.vox-about-content .btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.vox-about-content .js-goal-tab.active {
  background: #6C5CE7 !important;
  color: #fff !important;
  border-color: #6C5CE7 !important;
}

.vox-about-content .vox-image-card img {
  transition: transform 0.5s ease;
}

.vox-about-content .vox-image-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .vox-about-content h1 { font-size: 1.8rem; }
  .vox-about-content h2 { font-size: 1.5rem; }
  .vox-about-content .vox-platform-features { padding: 2rem !important; }
}

/* ===== PAGE: rooms-lobby ===== */
.rooms-lobby-section {
  background-color: #F9FAFB;
  min-height: 80vh;
}
.rooms-lobby-section .rooms-lobby-controls .btn-link {
  text-decoration: none;
  color: #636E72;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.rooms-lobby-section .rooms-lobby-controls .btn-link.active {
  color: #6C5CE7;
  position: relative;
}
.rooms-lobby-section .rooms-lobby-controls .btn-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: #6C5CE7;
  border-radius: 2px;
}
.rooms-lobby-section .room-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #EFEFEF;
}
.rooms-lobby-section .room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}
.rooms-lobby-section .room-img-wrapper img {
  transition: transform 0.5s ease;
}
.rooms-lobby-section .room-card:hover .room-img-wrapper img {
  transform: scale(1.05);
}
.rooms-lobby-section .progress {
  background-color: #F1F2F6;
}
.rooms-lobby-section .badge {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rooms-lobby-section .form-select:focus {
  border-color: #6C5CE7;
  box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.1);
}
.rooms-lobby-section .input-group:focus-within {
  border-color: #6C5CE7 !important;
  box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.1);
}

/* ===== PAGE: daily-quests ===== */
.quests-list .js-filter-btn {
  transition: all 0.3s ease;
  font-weight: 500;
  border-width: 2px;
}

.quests-list .js-filter-btn.active {
  background-color: #6C5CE7 !important;
  border-color: #6C5CE7 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.quests-list .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #FFFFFF;
}

.quests-list .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.quests-list .badge {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  padding: 0.5em 1em;
}

.quests-list .progress-bar {
  border-radius: 4px;
}

@media (max-width: 768px) {
  .quests-list h1 {
    font-size: 1.5rem !important;
  }
  .quests-list .lead {
    font-size: 0.95rem !important;
  }
}

/* ===== PAGE: support ===== */
.support-faq-section {
  background-color: #F9FAFB;
  min-height: 60vh;
}

.support-faq-section .search-container .input-group {
  border: 1px solid #EFEFEF;
  background: #FFFFFF;
}

.support-faq-section .search-container input:focus {
  box-shadow: none;
  outline: none;
}

.support-faq-section .accordion-button {
  background-color: #FFFFFF !important;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.support-faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #6C5CE7 !important;
  border-bottom: 1px solid #F3F4F6;
}

.support-faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(108, 92, 231, 0.2);
}

.support-faq-section .accordion-item {
  overflow: hidden;
  transition: transform 0.2s ease;
}

.support-faq-section .accordion-item:hover {
  transform: translateY(-2px);
}

.support-faq-section .btn-primary {
  background-color: #6C5CE7 !important;
  border-color: #6C5CE7 !important;
}

.support-faq-section .btn-outline-primary {
  color: #6C5CE7 !important;
  border-color: #6C5CE7 !important;
}

.support-faq-section .btn-outline-primary:hover,
.support-faq-section .btn-outline-primary.active {
  background-color: #6C5CE7 !important;
  color: #FFFFFF !important;
}

.support-faq-section .accordion-body {
  background-color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PAGE: login ===== */
.auth-section {
  background-color: #F9FAFB;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.auth-section .auth-card {
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
}

.auth-section .auth-image-wrapper {
  position: relative;
  min-height: 500px;
}

.auth-section .auth-image-wrapper img {
  object-fit: cover;
}

.auth-section .auth-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(108, 92, 231, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.auth-section .color-primary {
  color: #6C5CE7;
}

.auth-section .nav-pills .nav-link {
  color: #636E72;
  background-color: #F9FAFB;
  border-radius: 50px;
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #EFEFEF;
}

.auth-section .nav-pills .nav-link.active {
  background-color: #6C5CE7;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.auth-section .form-control {
  background-color: #F9FAFB;
  border: 1px solid #EFEFEF !important;
  border-radius: 12px;
  font-size: 1rem;
  padding-left: 1.25rem;
  transition: border-color 0.3s ease;
}

.auth-section .form-control:focus {
  border-color: #6C5CE7 !important;
  box-shadow: none;
  background-color: #FFFFFF;
}

.auth-section .btn-primary {
  background-color: #6C5CE7;
  border-color: #6C5CE7;
  border-radius: 50px;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.25);
}

.auth-section .btn-primary:hover {
  background-color: #5a4bcf;
  border-color: #5a4bcf;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(108, 92, 231, 0.35);
}

.auth-section .alert-success {
  background-color: rgba(0, 184, 148, 0.1);
  color: #00B894;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
}

.auth-section .alert-warning {
  background-color: rgba(253, 203, 110, 0.1);
  color: #e1b12c;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .auth-section .auth-form-container {
    padding: 2rem 1.5rem;
  }
  .auth-section h1 {
    font-size: 1.5rem;
  }
  .auth-section .nav-pills .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

/* ===== PAGE: privacy ===== */
.vox-privacy-section { background-color: #F9FAFB; font-family: 'Inter', sans-serif; }.vox-privacy-section .vox-privacy-card { background: #FFFFFF; border-radius: 16px; border: 1px solid #EFEFEF; }.vox-privacy-section h1, .vox-privacy-section h2 { font-family: 'Montserrat', sans-serif; color: #2D3436; }.vox-privacy-section .text-primary { color: #6C5CE7 !important; }.vox-privacy-section .vox-divider { height: 4px; width: 60px; background: #6C5CE7; border-radius: 2px; }.vox-privacy-section p, .vox-privacy-section li { color: #636E72; line-height: 1.8; }.vox-privacy-section .vox-policy-block h2 i { color: #00CEC9; vertical-align: middle; }.vox-privacy-section .list-group-item { border-color: #F1F3F5; }.vox-privacy-section ul li { position: relative; padding-bottom: 8px; }@media (max-width: 767.98px) { .vox-privacy-section h1 { font-size: 18px !important; } .vox-privacy-section h2 { font-size: 16px !important; } .vox-privacy-section .vox-privacy-card { padding: 1.5rem !important; } .vox-privacy-section p { font-size: 14px; } }

/* ===== PAGE: terms ===== */
.vox-terms-section { font-family: 'Inter', sans-serif; color: #2D3436; }.vox-page-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #2D3436; font-size: 2.5rem; }.vox-sticky-sidebar { position: sticky; top: 100px; border: 1px solid #EFEFEF; }.vox-sticky-sidebar .nav-link { font-weight: 500; transition: all 0.3s ease; border-color: #F9FAFB !important; }.vox-sticky-sidebar .nav-link:hover { color: #6C5CE7 !important; padding-left: 1.25rem; }.vox-sticky-sidebar .nav-link.active { color: #6C5CE7 !important; font-weight: 700; border-left: 3px solid #6C5CE7 !important; padding-left: 1.25rem; }.vox-content-card { border: 1px solid #EFEFEF; }.vox-term-block h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; }.vox-term-block p, .vox-term-block li { line-height: 1.7; font-size: 1.05rem; }.vox-term-block ul { padding-left: 1.25rem; }.vox-term-block li { margin-bottom: 0.5rem; }@media (max-width: 768px) { .vox-page-title { font-size: 1.75rem; } .vox-content-card { padding: 1.5rem !important; } .vox-term-block h2 { font-size: 1.25rem; } }

/* ===== PAGE: disclaimer ===== */
.vox-disclaimer {
  background-color: #F9FAFB;
  font-family: 'Inter', sans-serif;
  color: #2D3436;
}

.vox-disclaimer .vox-sticky-nav {
  position: sticky;
  top: 100px;
  background-color: #FFFFFF;
  border-color: #EFEFEF !important;
}

.vox-disclaimer .vox-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2D3436;
}

.vox-disclaimer .nav-link {
  color: #636E72;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 5px;
}

.vox-disclaimer .nav-link:hover {
  background-color: #F0EDFF;
  color: #6C5CE7;
}

.vox-disclaimer .nav-link.active {
  background-color: #6C5CE7;
  color: #FFFFFF !important;
}

.vox-disclaimer .vox-content-card {
  background-color: #FFFFFF;
  border-color: #EFEFEF !important;
}

.vox-disclaimer .vox-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: #2D3436;
  margin-bottom: 0.5rem;
}

.vox-disclaimer .vox-last-updated {
  font-size: 0.85rem;
  color: #636E72;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vox-disclaimer .vox-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2D3436;
  display: flex;
  align-items: center;
}

.vox-disclaimer p {
  line-height: 1.8;
  color: #636E72;
  margin-bottom: 1.25rem;
}

.vox-disclaimer .vox-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #636E72;
}

.vox-disclaimer .vox-list li {
  margin-bottom: 0.75rem;
  position: relative;
}

@media (max-width: 767px) {
  .vox-disclaimer .vox-main-heading {
    font-size: 1.75rem;
  }
  .vox-disclaimer .vox-section-heading {
    font-size: 1.25rem;
  }
  .vox-disclaimer .vox-content-card {
    padding: 1.5rem !important;
  }
}

.comment-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EFEFEF;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-card:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08) !important;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6C5CE7;
}

.comment-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 1.05rem;
}

.bg-soft-primary {
    background-color: rgba(108, 92, 231, 0.1);
    font-size: 0.75rem;
}

.comment-time {
    font-size: 0.85rem;
}

.comment-body p {
    font-family: 'Inter', sans-serif;
    color: #2D3436;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-action {
    background: transparent;
    border: none;
    color: #636E72;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #6C5CE7;
}

.btn-reply-pill {
    background: #6C5CE7;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: auto;
    transition: background 0.2s;
}

.btn-reply-pill:hover {
    background: #A29BFE;
}

.reply-card {
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #00CEC9;
    transition: transform 0.2s ease;
}

.reply-card:hover {
    transform: scale(1.01);
}

.reply-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00CEC9;
}

.reply-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 0.95rem;
}

.reply-comment-wrapper {
    margin-left: 4rem;
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 50%;
    width: 1.5rem;
    border-left: 2px solid #EFEFEF;
    border-bottom: 2px solid #EFEFEF;
    border-bottom-left-radius: 12px;
}


/* ===== PAGE TEMPLATE: game-collection ===== */
.header-section .navbar {
    min-height: 80px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #EFEFEF;
}

.header-section .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 1.5rem;
}

.header-section .navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-section .nav-link {
    font-family: 'Inter', sans-serif;
    color: #636E72;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.header-section .nav-link:hover {
    color: #6C5CE7;
}

.header-section .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #2D3436;
    padding: 0.25rem;
}

.header-section .btn-primary {
    background-color: #6C5CE7;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.game-player-block {
    background: #000;
    overflow: hidden;
}

.game-player-block .iframe-container {
    width: 100%;
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
}

.game-player-block iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.game-player-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.js-game-wrapper:fullscreen,
.js-game-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-game-wrapper:fullscreen .iframe-container,
.js-game-wrapper:-webkit-full-screen .iframe-container {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: unset;
}

.js-game-wrapper:fullscreen iframe,
.js-game-wrapper:-webkit-full-screen iframe {
    width: 100%;
    height: 100%;
}

.game-info-block .game-text-content h1 {
    color: #2D3436;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.game-info-block .game-text-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #6C5CE7;
}

.game-description-rich {
    font-family: 'Inter', sans-serif;
    color: #636E72;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-visual-media img {
    object-fit: cover;
    max-height: 500px;
}

.game-sidebar-info .hover-link {
    transition: transform 0.2s ease, color 0.2s ease;
}

.game-sidebar-info .hover-link:hover {
    transform: translateX(5px);
    color: #6C5CE7 !important;
}

.voxinaslf-footer {
    background-color: #F9FAFB;
    padding: 80px 0 30px 0;
    border-top: 1px solid #EFEFEF;
    font-family: 'Inter', sans-serif;
    color: #2D3436;
}

.voxinaslf-footer .voxinaslf-footer-logo {
    max-width: 50px;
}

.voxinaslf-footer .voxinaslf-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.voxinaslf-footer .voxinaslf-footer-links {
    list-style: none;
    padding: 0;
}

.voxinaslf-footer .voxinaslf-footer-links a {
    color: #636E72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.voxinaslf-footer .voxinaslf-footer-links a:hover {
    color: #6C5CE7;
}

@media (max-width: 991px) {
    .game-player-block .iframe-container {
        aspect-ratio: 16 / 9;
        max-height: 60vh;
    }
}

@media (max-width: 767px) {
    .game-player-block .iframe-container {
        aspect-ratio: 16 / 9;
        max-height: 50vh;
    }

    .game-info-block .game-text-content h1 {
        font-size: 1.5rem;
    }
}