:root {
    --primary: #FFD700;
    --secondary: #8A2BE2;
    --accent: #00F5FF;
    --main-bg: #0D0D12;
    --surface: #1A1A24;
    --elevated: #252533;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B8;
    --text-muted: #70707A;
    --hero-glow: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    --gold-shimmer: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.custom-dark-theme {
    background-color: var(--main-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.custom-dark-theme h1,
.custom-dark-theme h2,
.custom-dark-theme h3,
.custom-dark-theme h4,
.custom-dark-theme h5,
.custom-dark-theme h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

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

.btn-pill {
    border-radius: 50rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pill:active {
    transform: scale(0.98);
}

.glass-nav {
    backdrop-filter: blur(12px);
    background-color: rgba(13, 13, 18, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: var(--primary);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .section-gap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 769px) {
    .section-gap {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* ===== header ===== */
.header-nav-block .bg-dark-custom {
    background-color: #0D0D12 !important;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.header-nav-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-nav-block .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #FFFFFF !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.header-nav-block .nav-link:hover,
.header-nav-block .nav-link.active {
    color: #FFD700 !important;
}

.header-nav-block .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.4rem;
}

.header-nav-block .dropdown-menu {
    background-color: #1A1A24 !important;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-nav-block .dropdown-item {
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-nav-block .dropdown-item:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.header-nav-block .navbar-toggler {
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    padding: 0;
}

.header-nav-block .navbar-toggler:focus {
    box-shadow: none;
}

.header-nav-block .btn-primary-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #0D0D12;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-nav-block .btn-primary-gold:hover {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    color: #0D0D12;
}

@media (max-width: 991.98px) {
    .header-nav-block .navbar-collapse {
        background-color: #0D0D12;
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        margin-top: 0.5rem;
    }

    .header-nav-block .nav-link {
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-nav-block .dropdown-menu {
        background-color: transparent !important;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .header-nav-block .dropdown-item {
        padding: 0.5rem 0;
    }
}

/* ===== hero ===== */
.hero-block {
    min-height: 85vh;
    background-color: #0D0D12;
    color: #FFFFFF;
    padding: 80px 0;
}

.hero-block__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-block__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 18, 0.95) 0%, rgba(13, 13, 18, 0.6) 50%, rgba(13, 13, 18, 0.3) 100%);
    z-index: 1;
}

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

.hero-block__badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #8A2BE2;
    color: #00F5FF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-block__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-block__description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #B0B0B8;
    max-width: 600px;
}

.hero-block__btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0D0D12 !important;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-block__btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-block__btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 16px 40px;
    transition: background 0.3s ease;
}

.hero-block__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
}

@media (max-width: 767.98px) {
    .hero-block {
        min-height: 70vh;
        padding: 60px 0;
        text-align: center;
    }

    .hero-block__overlay {
        background: rgba(13, 13, 18, 0.75);
    }

    .hero-block__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-block__actions {
        align-items: center;
    }
}

/* ===== games_grid ===== */
.games_grid-section {
    background-color: #0D0D12;
    background-image: url('../resources/visuals/content/dark-luxury-amusement-background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.games_grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 18, 0.9);
    z-index: 1;
}

.games_grid-container {
    position: relative;
    z-index: 2;
}

.games_grid-section h2 {
    color: #FFD700 !important;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.games_grid-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.games_grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1A1A24;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.games_grid-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.games_grid-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.games_grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.games_grid-card:hover .games_grid-img {
    transform: scale(1.1);
}

.games_grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(13, 13, 18, 1) 0%, rgba(13, 13, 18, 0.6) 50%, transparent 100%);
    z-index: 3;
}

.games_grid-card-title {
    color: #FFFFFF !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.games_grid-item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.games_grid-item-4 {
    grid-column: span 2;
}

@media (max-width: 1199px) {
    .games_grid-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .games_grid-item-1 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .games_grid-item-4 {
        grid-column: span 2;
    }

    .games_grid-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .games_grid-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 16px;
    }

    .games_grid-item-1,
    .games_grid-item-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .games_grid-section h2 {
        font-size: 1.5rem !important;
    }

    .games_grid-card-title {
        font-size: 1rem;
    }

    .games_grid-section {
        padding: 40px 0;
    }
}

/* ===== features ===== */
.features-section {
    background-color: #0D0D12;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.features-section .features-title {
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section .features-subtitle {
    font-family: 'Inter', sans-serif;
    color: #B0B0B8;
    max-width: 700px;
    line-height: 1.6;
}

.features-section .feature-card {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-section .feature-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.features-section .feature-icon-wrapper {
    font-size: 3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.features-section .feature-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.features-section .feature-card-text {
    font-family: 'Inter', sans-serif;
    color: #B0B0B8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.features-section .disclaimer-box {
    background: rgba(138, 43, 226, 0.1);
    border: 1px dashed rgba(138, 43, 226, 0.3);
    border-radius: 12px;
}

.features-section .disclaimer-box p {
    font-family: 'Inter', sans-serif;
    color: #70707A;
    font-size: 0.85rem;
    font-style: italic;
}

@media (max-width: 767px) {
    .features-section .features-title {
        font-size: 1.25rem;
    }

    .features-section .features-subtitle {
        font-size: 0.9rem;
    }

    .features-section .feature-card {
        padding: 30px 20px;
    }
}

/* ===== community ===== */
.community-section {
    background-color: #0D0D12;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.community-section .section-title {
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
}

.community-section .section-subtitle {
    color: #B0B0B8;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
}

.community-section .community-card {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.community-section .community-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.community-section .card-image-wrapper {
    height: 180px;
    overflow: hidden;
}

.community-section .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-section .community-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.community-section .card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.community-section .card-icon {
    color: #8A2BE2;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.community-section .card-title {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.community-section .card-text {
    color: #B0B0B8;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .community-section {
        padding: 60px 0;
    }

    .community-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .community-section .section-title {
        font-size: 1.1rem !important;
    }

    .community-section .section-subtitle {
        font-size: 0.9rem;
    }

    .community-section .card-title {
        font-size: 1rem !important;
    }

    .community-section .card-text {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    .community-section .card-image-wrapper {
        height: 150px;
    }
}

/* ===== footer ===== */
.spinmagic-footer {
    background-color: #0D0D12;
    color: #B0B0B8;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.spinmagic-footer .footer-disclaimer-box {
    background-color: #1A1A24;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.spinmagic-footer .footer-disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #B0B0B8;
}

.spinmagic-footer .footer-org-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.spinmagic-footer .footer-org-link:hover .footer-org-img {
    transform: scale(1.05);
}

.spinmagic-footer .footer-nav-link {
    color: #B0B0B8;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.spinmagic-footer .footer-nav-link:hover {
    color: #FFD700;
    padding-left: 5px;
}

.spinmagic-footer .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.spinmagic-footer .footer-contact-info a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.spinmagic-footer .footer-contact-info a:hover {
    color: #FFD700;
}

.spinmagic-footer .footer-bottom {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.spinmagic-footer .footer-copyright,
.spinmagic-footer .footer-disclaimer-mini {
    font-size: 0.8125rem;
    color: #70707A;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 18, 0.98);
    z-index: 10000;
    display: none !important;
}

.age-verification-overlay.active {
    display: flex !important;
}

.age-verification-card {
    background-color: #1A1A24;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.age-verification-card .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #0D0D12;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.age-verification-card .btn-primary:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

@media (max-width: 767.98px) {
    .spinmagic-footer {
        text-align: center;
    }

    .spinmagic-footer .footer-contact-info .d-flex {
        justify-content: center;
    }

    .spinmagic-footer .footer-disclaimer-box .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.bg-surface-custom {
    background-color: #1A1A24 !important;
}

.game-detail-block {
    background-color: #0D0D12;
    color: #FFFFFF;
}

.game-detail-block__iframe-wrapper {
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.game-detail-block__controls {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-detail-block__description-box {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-detail-block__info-card {
    background: #1A1A24;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.catalog-card {
    background: #252533;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.catalog-card__img-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.catalog-card__img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card__content h3 {
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.catalog-card:hover .catalog-card__content h3 {
    color: #FFD700;
}

.catalog-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.js-catalog-search {
    background-color: #252533 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    border-radius: 30px;
    padding-left: 20px;
}

.js-catalog-search::placeholder {
    color: #70707A;
}

.btn-floating {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-floating:hover {
    background: #FFD700;
    color: #0D0D12 !important;
    transform: translateY(-3px);
}


/* ===== PAGE: privacy ===== */
.policy-page-container {
    background-color: #1A1A24;
    color: #FFFFFF;
    padding: 60px 24px;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-page-container .policy-header {
    border-bottom: 2px solid #FFD700;
    padding-bottom: 20px;
}

.policy-page-container .policy-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-page-container .policy-section {
    margin-bottom: 40px;
}

.policy-page-container h3 {
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
    font-weight: 700;
    border-left: 4px solid #8A2BE2;
    padding-left: 15px;
    margin-top: 30px;
}

.policy-page-container p {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #B0B0B8;
    margin-bottom: 1.5rem;
}

.policy-page-container .policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-page-container .policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #B0B0B8;
    line-height: 1.6;
}

.policy-page-container .policy-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00F5FF;
    font-size: 0.9rem;
}

.policy-page-container strong {
    color: #FFFFFF;
}

.policy-page-container .text-primary {
    color: #FFD700 !important;
    transition: color 0.3s ease;
}

.policy-page-container .text-primary:hover {
    color: #00F5FF !important;
}

@media (max-width: 767px) {
    .policy-page-container {
        padding: 30px 15px;
        margin: 20px 10px;
    }
    
    .policy-page-container h2 {
        font-size: 1.5rem !important;
    }
    
    .policy-page-container h3 {
        font-size: 1.1rem !important;
    }
    
    .policy-page-container p {
        font-size: 0.95rem;
    }
}

/* ===== PAGE: terms ===== */
.policy-page-container {
  color: #B0B0B8;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-page-container .policy-content-wrapper {
  background: #1A1A24;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.policy-page-container .policy-section {
  margin-bottom: 32px;
}

.policy-page-container .policy-section:last-child {
  margin-bottom: 0;
}

.policy-page-container .policy-heading {
  color: #FFD700;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-page-container .policy-text {
  margin-bottom: 16px;
  color: #B0B0B8;
}

.policy-page-container .policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.policy-page-container .policy-list-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #B0B0B8;
}

.policy-page-container .policy-list-item::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00F5FF;
  font-size: 14px;
}

.policy-page-container .policy-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-page-container .policy-link:hover {
  color: #00F5FF;
}

@media (max-width: 767px) {
  .policy-page-container {
    padding: 24px 16px;
  }
  .policy-page-container .policy-content-wrapper {
    padding: 20px;
  }
  .policy-page-container .policy-heading {
    font-size: 16px;
  }
  .policy-page-container .policy-text {
    font-size: 14px;
  }
  .policy-page-container .policy-list-item {
    font-size: 14px;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-page-container {
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: #B0B0B8;
  background-color: transparent;
}

.policy-page-container h1,
.policy-page-container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
  font-weight: 700;
}

.policy-page-container h1.policy-title {
  font-size: clamp(24px, 5vw, 48px);
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.policy-page-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
  line-height: 1.2;
}

.policy-page-container p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.policy-page-container .last-updated {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-page-container .policy-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.policy-page-container .policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.policy-page-container .policy-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1rem;
}

.policy-page-container .policy-link {
  color: #00F5FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-page-container .policy-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .policy-page-container {
    padding: 20px 15px;
  }
  .policy-page-container h1.policy-title {
    font-size: 1.5rem !important;
  }
  .policy-page-container h2 {
    font-size: 1.1rem !important;
    margin-top: 1.5rem;
  }
  .policy-page-container p {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-page-container { background-color: #0D0D12; color: #B0B0B8; font-family: 'Inter', sans-serif; padding: 60px 0; min-height: 100vh; overflow: hidden; } .policy-page-container .policy-inner-wrapper { max-width: 900px; margin: 0 auto; padding: 0 24px; } .policy-page-container .policy-badge { display: inline-block; background: rgba(138, 43, 226, 0.2); color: #00F5FF; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 1.5rem; letter-spacing: 1px; border: 1px solid rgba(0, 245, 255, 0.3); } .policy-page-container .policy-main-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: #FFFFFF; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: -1px; } .policy-page-container .policy-main-desc { font-size: 1.125rem; line-height: 1.6; color: #B0B0B8; max-width: 700px; } .policy-page-container .policy-section { margin-bottom: 3.5rem; } .policy-page-container .policy-section h2 { font-family: 'Montserrat', sans-serif; color: #FFD700; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; } .policy-page-container .policy-section p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; } .policy-page-container .cookie-type-card { background: #1A1A24; border: 1px solid rgba(255, 255, 255, 0.08); padding: 24px; border-radius: 16px; height: 100%; transition: border-color 0.3s ease; } .policy-page-container .cookie-type-card:hover { border-color: #FFD700; } .policy-page-container .cookie-type-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: #FFFFFF; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; } .policy-page-container .cookie-type-card h3 i { color: #8A2BE2; font-size: 0.9rem; } .policy-page-container .cookie-type-card p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; } .policy-page-container .policy-link { color: #00F5FF; text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.3s; } .policy-page-container .policy-link:hover { border-bottom-color: #00F5FF; } @media (max-width: 768px) { .policy-page-container { padding: 40px 0; } .policy-page-container .policy-main-title { font-size: 18px !important; margin-bottom: 0.75rem; } .policy-page-container .policy-section h2 { font-size: 16px !important; } .policy-page-container .policy-section h3 { font-size: 14px !important; } .policy-page-container .policy-main-desc { font-size: 0.9rem; } }

/* ===== PAGE: rgp ===== */
.policy-page-container { font-family: 'Inter', sans-serif; color: #B0B0B8; line-height: 1.7; padding: 24px; max-width: 1200px; margin: 0 auto; background: #1A1A24; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } .policy-page-container h2 { font-family: 'Montserrat', sans-serif; color: #FFD700; margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; } .policy-page-container p { margin-bottom: 1.2rem; } .policy-page-container ul { margin-bottom: 1.5rem; padding-left: 1.2rem; list-style-type: disc; } .policy-page-container li { margin-bottom: 0.8rem; } .policy-page-container strong { color: #FFFFFF; font-weight: 600; } .policy-page-container a { color: #00F5FF; text-decoration: none; transition: color 0.3s ease; } .policy-page-container a:hover { color: #FFD700; } @media (max-width: 768px) { .policy-page-container { padding: 16px; border-radius: 0; } .policy-page-container h2 { font-size: 16px !important; } .policy-page-container p, .policy-page-container li { font-size: 14px; } }

/* ===== PAGE: about ===== */
.about-section-wrapper {
  background-color: #0D0D12;
  color: #FFFFFF;
}

.about-section-wrapper .text-primary {
  color: #FFD700 !important;
}

.about-section-wrapper .btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: none;
  color: #0D0D12;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-section-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #0D0D12;
}

.about-section-wrapper .text-secondary {
  color: #B0B0B8 !important;
}

.about-section-wrapper .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.about-section-wrapper .about-image-wrapper img {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 400px;
}

.about-section-wrapper .shimmer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.about-section-wrapper .vision-card {
  background: #1A1A24;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-section-wrapper .vision-card:hover {
  transform: translateY(-10px);
  background: #252533;
  border-color: rgba(255, 215, 0, 0.3) !important;
}

.about-section-wrapper .vision-icon-outer {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.about-section-wrapper .bg-surface {
  background-color: #1A1A24;
}

.about-section-wrapper .disclaimer-box {
  border-left: 4px solid #FFD700;
}

@media (max-width: 767px) {
  .about-section-wrapper h2.display-5 {
    font-size: 1.5rem;
  }
  .about-section-wrapper h2.display-6 {
    font-size: 1.3rem;
  }
  .about-section-wrapper .about-image-wrapper img {
    min-height: 250px;
  }
}

/* ===== PAGE: faq ===== */
.faq-section {
  background-color: #0D0D12;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.faq-section .bg-surface {
  background-color: #1A1A24 !important;
}
.faq-section .text-gold {
  color: #FFD700;
}
.faq-section .faq-search-wrapper input::placeholder {
  color: #70707A !important;
}
.faq-section .faq-categories .btn {
  background-color: #252533;
  color: #B0B0B8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  font-weight: 500;
}
.faq-section .faq-categories .btn:hover {
  border-color: #FFD700;
  color: #FFFFFF;
}
.faq-section .faq-categories .btn.active {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #0D0D12;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.faq-section .accordion-item {
  background-color: #1A1A24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-section .accordion-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
}
.faq-section .accordion-button {
  background-color: #1A1A24;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: none !important;
}
.faq-section .accordion-button:not(.collapsed) {
  color: #FFD700;
  background-color: rgba(255, 255, 255, 0.02);
}
.faq-section .accordion-button::after {
  background-image: none;
  content: '\f0fe';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.2rem;
  color: #B0B0B8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-section .accordion-button:not(.collapsed)::after {
  content: '\f146';
  color: #FFD700;
  transform: rotate(180deg);
}
.faq-section .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #B0B0B8;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .faq-section .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  .faq-section .faq-categories {
    gap: 0.5rem;
  }
  .faq-section .faq-categories .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* ===== PAGE: rooms ===== */
.rooms-list-section { background-color: #0D0D12; color: #FFFFFF; font-family: 'Inter', sans-serif; } .rooms-list-section .rooms-main-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; } .rooms-list-section .rooms-main-desc { max-width: 700px; color: #B0B0B8; line-height: 1.6; } .rooms-list-section .search-wrapper { background: #1A1A24; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50px; padding: 5px 15px; } .rooms-list-section .js-room-search { background: transparent; border: none; color: #FFFFFF; box-shadow: none !important; } .rooms-list-section .js-room-search::placeholder { color: #70707A; } .rooms-list-section .filter-btn { background: #1A1A24; color: #B0B0B8; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50px; padding: 8px 24px; transition: all 0.3s ease; } .rooms-list-section .filter-btn:hover, .rooms-list-section .filter-btn.active { background: #8A2BE2; color: #FFFFFF; border-color: #8A2BE2; box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3); } .rooms-list-section .room-card { background: #1A1A24; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); transition: transform 0.3s ease, border-color 0.3s ease; height: 100%; display: flex; flex-direction: column; } .rooms-list-section .room-card:hover { transform: translateY(-5px); border-color: rgba(255, 215, 0, 0.4); } .rooms-list-section .room-image-wrapper { position: relative; aspect-ratio: 16/9; overflow: hidden; } .rooms-list-section .room-img { width: 100%; height: 100%; object-fit: cover; } .rooms-list-section .room-badge { position: absolute; top: 15px; left: 15px; background: rgba(0, 245, 255, 0.9); color: #0D0D12; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; } .rooms-list-section .room-title { color: #FFD700; font-family: 'Montserrat', sans-serif; font-weight: 700; transition: color 0.3s ease; } .rooms-list-section .room-card:hover .room-title { color: #FFFFFF; } .rooms-list-section .stat-label { color: #70707A; font-size: 0.85rem; } .rooms-list-section .stat-value { color: #00F5FF; font-weight: 600; font-size: 0.85rem; } .rooms-list-section .progress-container { height: 6px; background: #252533; border-radius: 3px; overflow: hidden; margin: 8px 0; } .rooms-list-section .progress-bar { background: linear-gradient(90deg, #FFD700, #FFA500); height: 100%; width: 0%; transition: width 0.5s ease; } .rooms-list-section .progress-text { font-size: 0.7rem; color: #70707A; display: block; text-align: right; } .rooms-list-section .btn-outline-primary { border-color: #8A2BE2; color: #8A2BE2; border-width: 2px; font-weight: 600; transition: all 0.3s ease; } .rooms-list-section .btn-outline-primary:hover { background: #8A2BE2; color: #FFFFFF; box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2); }

/* ===== PAGE: players ===== */
.players-section {
  background-color: #0D0D12;
  font-family: 'Inter', sans-serif;
}

.players-section .players-search-container {
  background: #1A1A24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.players-section .players-search-container .form-control {
  font-size: 1rem;
}

.players-section .players-search-container .form-control::placeholder {
  color: #70707A;
}

.players-section .player-card {
  background: #1A1A24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.players-section .player-card:hover {
  border-color: #FFD700;
  background: #252533;
  transform: translateY(-5px);
}

.players-section .player-avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.players-section .player-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8A2BE2;
}

.players-section .status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #1A1A24;
}

.players-section .status-indicator.online {
  background-color: #00F5FF;
  box-shadow: 0 0 8px #00F5FF;
}

.players-section .progress-bar-container {
  width: 100%;
  height: 6px;
  background: #0D0D12;
  border-radius: 3px;
  overflow: hidden;
}

.players-section .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8A2BE2, #00F5FF);
  transition: width 0.5s ease;
}

.players-section .text-secondary-light {
  color: #B0B0B8;
}

.players-section .text-accent {
  color: #00F5FF;
}

.players-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ===== PAGE: support ===== */
.support-section {
  background-color: #0D0D12;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.support-section .support-content-box {
  background: #1A1A24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.support-section .support-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.support-section .support-description {
  line-height: 1.8;
  color: #B0B0B8;
}
.support-section .support-contact-wrapper {
  background: rgba(138, 43, 226, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  position: relative;
}
.support-section .support-email-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}
.support-section .support-email-link:hover {
  color: #00F5FF;
}
.support-section .text-accent {
  color: #FFD700;
}
.support-section .btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: none;
  color: #0D0D12;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #0D0D12;
}
.support-section .support-image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.support-section .status-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 13, 18, 0.9);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #FFD700;
  font-size: 0.85rem;
  font-weight: 600;
}
.support-section .status-dot {
  width: 8px;
  height: 8px;
  background-color: #00FF00;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00FF00;
}
.support-section .support-feature-card {
  background: #252533;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.support-section .support-feature-card:hover {
  border-color: #8A2BE2;
  transform: translateY(-5px);
}
.support-section .feature-icon-box i {
  color: #8A2BE2;
}
.support-section .feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}
.support-section .feature-text {
  color: #B0B0B8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.comment-card {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comment-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: #252533;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.avatar-wrapper {
    position: relative;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00F5FF;
    border: 2px solid #1A1A24;
    border-radius: 50%;
    box-shadow: 0 0 8px #00F5FF;
}

.author-name {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.author-rank {
    color: #FFD700;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-time {
    color: #70707A;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

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

.comment-actions {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: #70707A;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.action-btn:hover {
    color: #00F5FF;
}

.action-btn.active {
    color: #8A2BE2;
}

.reply-container {
    border-left: 2px solid rgba(138, 43, 226, 0.3) !important;
    margin-top: 12px;
}

.reply-card {
    background: #252533;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.comment-avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #8A2BE2;
}

.author-name-sm {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.mention-tag {
    color: #00F5FF;
    font-weight: 600;
    margin-right: 4px;
}

.reply-card .comment-content p {
    font-size: 0.9rem;
    color: #B0B0B8;
}

.reply-card .comment-actions {
    gap: 15px;
    margin-top: 10px;
    padding-top: 10px;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.header-nav-block .bg-dark-custom {
    background-color: #0D0D12 !important;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.header-nav-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-nav-block .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #FFFFFF !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.header-nav-block .nav-link:hover,
.header-nav-block .nav-link.active {
    color: #FFD700 !important;
}

.header-nav-block .dropdown-menu {
    background-color: #1A1A24 !important;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
}

.header-nav-block .dropdown-item {
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.header-nav-block .btn-primary-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #0D0D12;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.game-detail-hero {
    background-color: #0D0D12;
    padding-bottom: 80px;
}

.game-wrapper {
    background: #1A1A24;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.iframe-container {
    width: 100%;
    height: 600px;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-content-card {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gold {
    color: #FFD700;
}

.text-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.sidebar-details {
    background: #1A1A24;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.comment-card {
    background: #1A1A24;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.action-btn {
    background: none;
    border: none;
    color: #B0B0B8;
    font-size: 0.85rem;
    margin-right: 15px;
    transition: color 0.2s;
}

.action-btn:hover,
.action-btn.active {
    color: #FFD700;
}

.comment-form-box {
    background: #252533;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-control:focus {
    background-color: #0D0D12;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    color: #fff;
}

.spinmagic-footer {
    background-color: #0D0D12;
    color: #B0B0B8;
}

.footer-disclaimer-box {
    background-color: #1A1A24;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 18, 0.98);
    z-index: 10000;
    display: none !important;
}

.age-verification-overlay.active {
    display: flex !important;
}

.age-verification-card {
    background-color: #1A1A24;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
}

.js-game-wrapper:fullscreen,
.js-game-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    background: #000;
}

.js-game-wrapper:fullscreen .iframe-container,
.js-game-wrapper:-webkit-full-screen .iframe-container {
    flex: 1;
    height: auto !important;
}

.js-game-wrapper:fullscreen .game-controls-bar,
.js-game-wrapper:-webkit-full-screen .game-controls-bar {
    flex-shrink: 0;
}

.js-submit-comment {
    background: linear-gradient(135deg, #8A2BE2 0%, #00F5FF 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.js-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6);
}

@media (max-width: 768px) {
    .iframe-container {
        height: 400px;
    }

    .game-detail-hero {
        padding-bottom: 40px;
    }

    .game-detail-hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}