:root {
    --primary-bg: #0a0a12;
    --secondary-bg: #161625;
    --surface-color: #1f1f33;
    --text-light: #ffffff;
    --text-muted: #b0b0c3 !important;
    --neon-purple: #bc13fe;
    --electric-blue: #00d2ff;
    --vibrant-pink: #ff00cc;
    --gold-glow: #ffd700;
    --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.spinceleb-age-modal {
    align-items: center;
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(10px);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 10050;
}

.spinceleb-age-modal.is-visible {
    display: flex;
}

.spinceleb-age-modal__dialog {
    background: #161625;
    border: 1px solid rgba(188, 19, 254, 0.55);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    color: #ffffff;
    max-width: 460px;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.spinceleb-age-modal__icon {
    align-items: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    font-size: 2rem;
    height: 72px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 72px;
}

.spinceleb-age-modal__title {
    color: #ffffff;
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}

.spinceleb-age-modal__text {
    color: #b0b0c3;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.spinceleb-age-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.spinceleb-age-modal__btn {
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    text-transform: uppercase;
}

.spinceleb-age-modal__btn--yes {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.spinceleb-age-modal__btn--no {
    background: #1f1f33;
    border: 1px solid rgba(176, 176, 195, 0.25);
    color: #b0b0c3;
}

@media (max-width: 575.98px) {
    .spinceleb-age-modal__dialog {
        padding: 1.5rem;
    }

    .spinceleb-age-modal__actions {
        flex-direction: column;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

* {
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.btn-glow {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.4);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.6);
    color: white;
}

/* ===== header ===== */
.spinceleb-header {
    background-color: #161625;
    border-bottom: 2px solid #bc13fe;
    z-index: 1050;
    position: sticky;
    top: 0;
    width: 100%;
    transition: background-color 0.4s ease;
}

.spinceleb-header .navbar {
    padding: 0.75rem 0;
}

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

.spinceleb-header .spinceleb-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.spinceleb-header .nav-link {
    color: #b0b0c3 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.spinceleb-header .nav-link:hover {
    color: #00d2ff !important;
    transform: translateY(-1px);
}

.spinceleb-header .nav-link.active {
    color: #bc13fe !important;
    font-weight: 600;
}

.spinceleb-header .navbar-toggler {
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    padding: 0;
}

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

.spinceleb-header .spinceleb-cta-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    padding: 0.65rem 1.75rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinceleb-header .spinceleb-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
}

@media (max-width: 991.98px) {
    .spinceleb-header .navbar-collapse {
        background-color: #1f1f33;
        padding: 1.5rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid rgba(188, 19, 254, 0.2);
    }

    .spinceleb-header .nav-item {
        border-bottom: 1px solid rgba(176, 176, 195, 0.1);
    }

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

    .spinceleb-header .nav-link {
        padding: 1rem 0 !important;
        font-size: 1rem;
    }

    .spinceleb-header .spinceleb-cta-btn {
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.8rem;
    }
}

/* ===== hero ===== */
.hero-block {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.hero-block .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #0a0a12;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-block .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a4a68;
    max-width: 540px;
}

.hero-block .btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.hero-block .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
    color: #ffffff;
}

.hero-block .trust-badge {
    color: #0a0a12;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-block .trust-badge i {
    font-size: 1.5rem;
    color: #bc13fe;
}

.hero-block .small-disclaimer {
    font-size: 0.75rem;
    color: #b0b0c3;
    letter-spacing: 1px;
}

.hero-block .hero-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border: 8px solid #f8f9fa;
}

@media (max-width: 768px) {
    .hero-block .hero-title {
        font-size: 1.75rem;
    }

    .hero-block .hero-description {
        font-size: 1rem;
    }

    .hero-block .hero-image-wrapper img {
        min-height: 300px;
    }
}

/* ===== games-catalog ===== */
.games-catalog-section {
    background-color: #0a0a12;
    color: #ffffff;
}

.games-catalog-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.games-catalog-section .text-secondary {
    color: #b0b0c3 !important;
}

.games-catalog-section .game-card {
    background: #1f1f33;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(188, 19, 254, 0.1);
    position: relative;
}

.games-catalog-section .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(188, 19, 254, 0.3);
    border-color: rgba(188, 19, 254, 0.5);
}

.games-catalog-section .game-card-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.games-catalog-section .game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.games-catalog-section .game-card:hover .game-card-img {
    transform: scale(1.1);
}

.games-catalog-section .game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.games-catalog-section .game-card:hover .game-card-overlay {
    opacity: 1;
}

.games-catalog-section .game-card-overlay i {
    font-size: 3rem;
    color: #bc13fe;
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.8);
}

.games-catalog-section .game-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.games-catalog-section .btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.games-catalog-section .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.5);
    background: linear-gradient(135deg, #7b22db 0%, #3686fd 100%);
}

/* ===== features ===== */
.features-section-unique {
    background-color: #0a0a12;
    background-image: radial-gradient(circle at top right, rgba(188, 19, 254, 0.05), transparent), radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.05), transparent);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-section-unique .text-secondary-light {
    color: #b0b0c3;
}

.features-section-unique .feature-card-item {
    background: #161625;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.features-section-unique .feature-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(188, 19, 254, 0.2);
    border-color: rgba(188, 19, 254, 0.3);
}

.features-section-unique .feature-image-wrapper {
    height: 200px;
    border-radius: 16px 16px 0 0;
}

.features-section-unique .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.features-section-unique .feature-card-item:hover .feature-img {
    transform: scale(1.1);
}

.features-section-unique .feature-icon-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #bc13fe 0%, #00d2ff 100%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.features-section-unique h3 {
    color: #ffffff;
    transition: color 0.3s ease;
}

.features-section-unique .feature-card-item:hover h3 {
    color: #00d2ff;
}

.features-section-unique .feature-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.features-section-unique .feature-btn:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.features-section-unique .disclaimer-box {
    background: rgba(31, 31, 51, 0.5);
    border-radius: 12px;
    border: 1px dashed rgba(176, 176, 195, 0.2);
}

@media (max-width: 767.98px) {
    .features-section-unique h2 {
        font-size: 1.5rem !important;
    }

    .features-section-unique h3 {
        font-size: 1.1rem !important;
    }

    .features-section-unique .feature-image-wrapper {
        height: 180px;
    }
}

/* ===== about-preview ===== */
.about-preview-section {
    background-color: #0a0a12;
    overflow: hidden;
    position: relative;
}

.about-preview-section .text-gradient {
    background: linear-gradient(135deg, #bc13fe, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-preview-section .icon-wrapper {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.5rem;
}

.about-preview-section .btn-gradient {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    color: #ffffff !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.about-preview-section .btn-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 17, 203, 0.4);
}

.about-preview-section .image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-preview-section .glow-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.3) 0%, rgba(0, 210, 255, 0.3) 100%);
    filter: blur(80px);
    z-index: 0;
}

.about-preview-section .js-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-preview-section .js-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .about-preview-section .content-box {
        text-align: center;
    }

    .about-preview-section .features-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .about-preview-section .cta-wrapper {
        display: flex;
        justify-content: center;
    }
}

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

.footer-scc__disclaimer-box {
    border: 1px solid #bc13fe;
    background-color: rgba(188, 19, 254, 0.05);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.1);
}

.footer-scc__disclaimer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-scc__warning-icon {
    font-size: 1.5rem;
    color: #bc13fe;
}

.footer-scc__disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b0b0c3;
    margin-bottom: 1rem;
}

.footer-scc__org-logos {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.footer-scc__org-img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.footer-scc__logo {
    max-width: 50px;
    height: auto;
}

.footer-scc__brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #00d2ff;
    text-transform: uppercase;
}

.footer-scc__brand-desc {
    font-size: 0.9rem;
    color: #b0b0c3;
    max-width: 300px;
}

.footer-scc__nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-scc__nav-link {
    color: #b0b0c3;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-scc__nav-link:hover {
    color: #00d2ff;
    transform: translateX(5px);
}

.footer-scc__bottom {
    font-size: 0.8rem;
    color: #4a4a68;
}

.footer-scc__age-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

@media (max-width: 767.98px) {
    .footer-scc__disclaimer-title {
        font-size: 1.1rem;
    }

    .footer-scc__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-scc__brand-desc {
        margin: 0 auto;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper { font-family: 'Inter', sans-serif; line-height: 1.8; color: #b0b0c3; padding: 40px 20px; max-width: 1000px; margin: 0 auto; background: #161625; border-radius: 12px; border: 1px solid rgba(188, 19, 254, 0.2); } .policy-content-wrapper h2 { font-family: 'Montserrat', sans-serif; color: #ffffff; font-weight: 800; font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid #bc13fe; padding-bottom: 10px; } .policy-content-wrapper p { margin-bottom: 1.5rem; color: #b0b0c3; } .policy-content-wrapper ul { margin-bottom: 1.5rem; padding-left: 0; list-style: none; } .policy-content-wrapper li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; } .policy-content-wrapper li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; left: 0; color: #00d2ff; font-size: 1rem; } .policy-content-wrapper strong { color: #ffffff; font-weight: 600; } @media (max-width: 768px) { .policy-content-wrapper { padding: 25px 15px; } .policy-content-wrapper h2 { font-size: 1.2rem; } .policy-content-wrapper p, .policy-content-wrapper li { font-size: 0.9rem; } }

/* ===== PAGE: terms ===== */
.policy-content-wrapper { color: #b0b0c3; font-family: 'Inter', sans-serif; line-height: 1.6; padding: 20px; }.policy-content-wrapper .terms-container { max-width: 900px; margin: 0 auto; }.policy-content-wrapper .terms-header { font-family: 'Montserrat', sans-serif; color: #ffffff; font-weight: 800; font-size: 2.5rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 4px solid #bc13fe; display: inline-block; }.policy-content-wrapper .terms-intro { font-size: 1.1rem; color: #00d2ff; margin-bottom: 3rem; font-weight: 500; }.policy-content-wrapper .terms-content-block { margin-bottom: 2.5rem; padding: 1.5rem; background: #161625; border-radius: 12px; border-left: 3px solid #bc13fe; transition: transform 0.3s ease; }.policy-content-wrapper .terms-content-block:hover { transform: translateX(10px); }.policy-content-wrapper h2 { font-family: 'Montserrat', sans-serif; color: #ffffff; font-size: 1.5rem; margin-bottom: 1rem; text-transform: uppercase; font-weight: 700; }.policy-content-wrapper p { margin-bottom: 1rem; }.policy-content-wrapper .terms-list { list-style: none; padding-left: 0; }.policy-content-wrapper .terms-list li { position: relative; padding-left: 2rem; margin-bottom: 0.75rem; color: #b0b0c3; }.policy-content-wrapper .terms-list li::before { content: '\ea6e'; font-family: 'remixicon'; position: absolute; left: 0; color: #ff00cc; font-size: 1.2rem; top: 0; }@media (max-width: 767.98px) { .policy-content-wrapper .terms-header { font-size: 18px !important; } .policy-content-wrapper h2 { font-size: 16px !important; } .policy-content-wrapper .terms-content-block { padding: 1rem; margin-bottom: 1.5rem; } .policy-content-wrapper .terms-content-block:hover { transform: none; } }

/* ===== PAGE: disclaimer ===== */
.policy-section { background-color: #0a0a12; padding: 60px 0; min-height: 100vh; display: flex; align-items: center; } .policy-content-wrapper { max-width: 900px; margin: 0 auto; padding: 40px; background-color: #161625; border-radius: 16px; border: 1px solid rgba(188, 19, 254, 0.2); color: #b0b0c3; font-family: 'Inter', sans-serif; line-height: 1.8; } .policy-content-wrapper h2 { font-family: 'Montserrat', sans-serif; color: #ffffff; font-size: 1.5rem; font-weight: 800; margin-top: 2rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; border-left: 4px solid #bc13fe; padding-left: 15px; } .policy-content-wrapper p { margin-bottom: 1.2rem; font-size: 1rem; color: #b0b0c3; } .policy-content-wrapper ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } .policy-content-wrapper ul li { position: relative; padding-left: 25px; margin-bottom: 0.8rem; } .policy-content-wrapper ul li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; left: 0; top: 0; color: #00d2ff; font-size: 1.1rem; } .policy-content-wrapper strong { color: #ffffff; font-weight: 600; } @media (max-width: 768px) { .policy-content-wrapper { padding: 25px; margin: 0 15px; } .policy-content-wrapper h2 { font-size: 1.2rem; } .policy-content-wrapper p { font-size: 0.9rem; } }

/* ===== PAGE: about-us ===== */
.about-content {
  background-color: #0a0a12;
  color: #ffffff;
  overflow: hidden;
}
.about-content h1 {
  color: #bc13fe;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}
.about-content h2 {
  color: #00d2ff;
  font-family: 'Montserrat', sans-serif;
}
.about-content .text-accent {
  color: #ff00cc !important;
}
.about-content .text-secondary-custom {
  color: #b0b0c3;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
.about-content .glass-card {
  background: rgba(31, 31, 51, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(188, 19, 254, 0.2) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-content .glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
  border-color: rgba(188, 19, 254, 0.6) !important;
}
.about-content .icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 15px rgba(37, 117, 252, 0.5);
}
.about-content .btn-custom {
  background: linear-gradient(90deg, #ff00cc, #3333ff, #ff00cc);
  background-size: 200% auto;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
}
.about-content .btn-custom:hover {
  background-position: right center;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.6);
  transform: scale(1.05);
}
.about-content .image-reveal-wrapper {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-content .image-reveal-wrapper:hover {
  transform: scale(1.02);
}
@media (max-width: 767.98px) {
  .about-content h1 {
    font-size: 1.5rem !important;
  }
  .about-content h2 {
    font-size: 1.3rem !important;
  }
  .about-content .lead {
    font-size: 1rem !important;
  }
}

/* ===== PAGE: catalog ===== */
.games-catalog-section { background-color: #0a0a12; min-height: 80vh; }
.games-catalog-section .search-box input { background: #1f1f33; border: 1px solid #2575fc; color: #ffffff; border-radius: 25px; }
.games-catalog-section .search-box input:focus { background: #1f1f33; border-color: #bc13fe; box-shadow: 0 0 10px rgba(188,19,254,0.3); color: #ffffff; }
.games-catalog-section .sort-box select { background: #1f1f33; border: 1px solid #2575fc; color: #ffffff; border-radius: 25px; min-width: 180px; }
.games-catalog-section .sort-box select:focus { background: #1f1f33; border-color: #bc13fe; box-shadow: 0 0 10px rgba(188,19,254,0.3); color: #ffffff; }
.games-catalog-section .game-card { background: rgba(31, 31, 51, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transition: transform 0.4s ease, box-shadow 0.4s ease; backdrop-filter: blur(10px); }
.games-catalog-section .game-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 210, 255, 0.2); border-color: #00d2ff; }
.games-catalog-section .game-card-img-wrapper { border-radius: 16px 16px 0 0; aspect-ratio: 16/10; }
.games-catalog-section .game-card-img-wrapper img { object-fit: cover; height: 100%; transition: scale 0.6s ease; }
.games-catalog-section .game-card:hover .game-card-img-wrapper img { scale: 1.1; }
.games-catalog-section .game-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.4s ease; }
.games-catalog-section .game-card:hover .game-card-overlay { opacity: 1; }
.games-catalog-section .badge { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); color: #fff; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.5px; border-radius: 6px; padding: 6px 12px; }
.games-catalog-section .game-card-content h3 { color: #ffffff; transition: color 0.3s ease; line-height: 1.3; }
.games-catalog-section .game-card-content h3:hover { color: #00d2ff; }
.games-catalog-section .rating i { font-size: 0.9rem; }
.games-catalog-section .btn-primary.btn-floating { background: linear-gradient(135deg, #ff00cc, #3333ff); border: none; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(255, 0, 204, 0.4); }
@media (max-width: 767.98px) {
  .games-catalog-section .display-5 { font-size: 1.75rem; }
  .games-catalog-section .lead { font-size: 0.95rem; }
}

/* ===== PAGE: online-players ===== */
.players-list-section {
  background-color: #0a0a12;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}
.players-list-section__title {
  color: #ffffff;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .players-list-section__title {
    font-size: 1.5rem;
  }
}
.players-list-section .bg-surface {
  background-color: #1f1f33 !important;
}
.players-list-section__card {
  background-color: #161625;
  border: 1px solid rgba(188, 19, 254, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.players-list-section__card:hover {
  transform: translateY(-5px);
  border-color: #bc13fe;
  box-shadow: 0 10px 30px rgba(188, 19, 254, 0.1);
}
.players-list-section__rank-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #1f1f33;
  flex-shrink: 0;
}
.players-list-section__rank-badge.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #0a0a12;
}
.players-list-section__rank-badge.rank-2 {
  background: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%);
  color: #0a0a12;
}
.players-list-section__rank-badge.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
  color: #ffffff;
}
.players-list-section__avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.players-list-section__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #bc13fe;
}
.players-list-section__status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #00ff00;
  border: 2px solid #161625;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00;
}
.players-list-section .bg-accent-purple {
  background-color: #bc13fe !important;
}
.players-list-section .bg-accent-blue {
  background-color: #00d2ff !important;
}
.players-list-section .bg-accent-pink {
  background-color: #ff00cc !important;
}
.players-list-section .dropdown-item:hover {
  background-color: #bc13fe;
}
.players-list-section .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 19, 254, 0.25);
  background-color: #1f1f33;
  color: #ffffff;
}

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

.daily-quests-section h1 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.daily-quests-section .text-secondary-light {
  color: #b0b0c3 !important;
}

.daily-quests-section .btn-outline-primary {
  border-color: #bc13fe;
  color: #bc13fe;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.4s ease;
  border-radius: 50px;
}

.daily-quests-section .btn-outline-primary:hover,
.daily-quests-section .btn-outline-primary.active {
  background: linear-gradient(135deg, #bc13fe 0%, #00d2ff 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.daily-quests-section .quest-card {
  background-color: #161625;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.daily-quests-section .quest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.1);
}

.daily-quests-section .quest-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.daily-quests-section .quest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.6s ease;
}

.daily-quests-section .quest-card:hover .quest-card-image img {
  scale: 1.1;
}

.daily-quests-section .quest-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(188, 19, 254, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.daily-quests-section .quest-card-body {
  padding: 1.5rem;
}

.daily-quests-section .quest-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.daily-quests-section .progress {
  height: 8px;
  background-color: #1f1f33;
  border-radius: 10px;
  overflow: visible;
}

.daily-quests-section .progress-bar {
  background: linear-gradient(90deg, #bc13fe, #00d2ff);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(188, 19, 254, 0.6);
}

/* ===== PAGE: faq ===== */
.faq-section {
  background-color: #0a0a12;
  color: #ffffff;
  min-height: 600px;
}

.faq-section .faq-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-section .faq-subtitle {
  font-family: 'Inter', sans-serif;
  color: #b0b0c3 !important;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section .faq-search-wrapper {
  background: #161625;
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgba(188, 19, 254, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-section .faq-search-wrapper .input-group-text {
  background: transparent;
  color: #00d2ff;
  font-size: 1.25rem;
}

.faq-section .faq-search-wrapper .js-faq-search {
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  padding: 12px;
}

.faq-section .faq-search-wrapper .js-faq-search::placeholder {
  color: #4a4a68;
}

.faq-section .faq-filter-btn {
  background: #1f1f33;
  color: #b0b0c3;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  transition: all 0.4s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-section .faq-filter-btn:hover,
.faq-section .faq-filter-btn.active {
  background: linear-gradient(135deg, #bc13fe 0%, #00d2ff 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.faq-section .faq-accordion .accordion-item {
  background: #161625;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.faq-section .faq-accordion .accordion-item:hover {
  border-color: rgba(0, 210, 255, 0.3);
}

.faq-section .faq-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 20px;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.05);
}

.faq-section .faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-section .faq-accordion .accordion-body {
  background: #1f1f33;
  color: #b0b0c3;
  line-height: 1.6;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .faq-section .faq-main-title {
    font-size: 1.5rem;
  }
  .faq-section .faq-filter-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
}

.social-comment-card {
    background: rgba(31, 31, 51, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(188, 19, 254, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.social-comment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(188, 19, 254, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(188, 19, 254, 0.1);
}

.comment-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 2px solid #bc13fe;
    padding: 2px;
    background: #0a0a12;
}

.avatar-wrapper {
    position: relative;
}

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

.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #bc13fe 0%, #ff00cc 100%);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comment-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.action-btn {
    background: transparent;
    border: none;
    color: #b0b0c3;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

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

.like-btn:hover {
    color: #ff00cc;
}

.text-secondary-light {
    color: #b0b0c3 !important;
}

.social-reply-container {
    position: relative;
    border-left: 2px solid rgba(188, 19, 254, 0.2);
    padding-left: 1rem;
}

.social-reply-card {
    background: rgba(22, 22, 37, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.1);
}

.reply-avatar {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 1.5px solid #00d2ff;
}

.reply-text {
    color: #b0b0c3;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

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

.text-accent-blue {
    color: #00d2ff !important;
}

.text-secondary-dark {
    color: #4a4a68 !important;
}

.action-btn-sm {
    background: transparent;
    border: none;
    color: #4a4a68;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0;
    transition: color 0.3s ease;
}

.action-btn-sm:hover {
    color: #bc13fe;
}


/* ===== PAGE TEMPLATE: games ===== */
.game-detail-template {
    background-color: #0a0a12;
    color: #ffffff;
}

.game-detail-template .game-wrapper {
    width: 100%;
    max-width: 1200px;
    background-color: #000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 768px) {
    .game-detail-template .game-wrapper {
        border-radius: 12px;
    }
}

.game-detail-template .game-iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (min-width: 992px) {
    .game-detail-template .game-iframe {
        height: 600px;
    }
}

.game-detail-template .game-control-bar {
    background: rgba(22, 22, 37, 0.8);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    border-radius: 30px;
}

.game-detail-template .spinceleb-fs-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    transition: transform 0.3s ease;
}

.game-detail-template .spinceleb-fs-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
}

.game-detail-template .spinceleb-exit-fs {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: #ff00cc;
    color: #fff;
}

.game-detail-template :fullscreen .game-iframe {
    height: 100vh !important;
    width: 100vw !important;
}

.game-detail-template .text-accent-purple {
    color: #bc13fe;
}

.game-detail-template .text-accent-blue {
    color: #00d2ff;
}

.game-detail-template .bg-gradient-purple {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

.game-detail-template .game-description-wrapper {
    background-color: #161625;
    border-radius: 16px;
    border: 1px solid rgba(188, 19, 254, 0.2);
}

.game-detail-template .game-main-text p {
    line-height: 1.8;
    color: #b0b0c3;
    font-size: 1.05rem;
}

.game-detail-template .sidebar-card {
    background-color: #1f1f33;
    border-radius: 16px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.game-detail-template .sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-size: 1.1rem;
}

.game-detail-template .comment-auth-message {
    background-color: rgba(255, 0, 204, 0.1);
    border: 1px solid #ff00cc;
    color: #ff00cc;
    font-weight: 600;
}


.game-detail-template .social-comment-card {
    background-color: #161625;
    border-radius: 12px;
    border-left: 4px solid #bc13fe;
}

.game-detail-template .avatar-wrapper {
    position: relative;
}

.game-detail-template .comment-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid #bc13fe;
}

.game-detail-template .status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #161625;
}

.game-detail-template .status-indicator.online {
    background-color: #00d2ff;
}

.game-detail-template .comment-text {
    color: #b0b0c3;
    margin-bottom: 0;
}

.game-detail-template .action-btn {
    background: none;
    border: none;
    color: #b0b0c3;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0;
}

.game-detail-template .action-btn:hover,
.game-detail-template .action-btn.active {
    color: #bc13fe;
}

.game-detail-template .social-reply-card {
    background-color: #1f1f33;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-detail-template .reply-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.game-detail-template .mention-tag {
    color: #00d2ff;
    font-weight: 600;
}

.game-detail-template .action-btn-sm {
    background: none;
    border: none;
    color: #4a4a68;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
}

.game-detail-template .form-control {
    background-color: #1f1f33;
    border: 1px solid rgba(176, 176, 195, 0.2);
    color: #fff;
}

.game-detail-template .form-control:focus {
    background-color: #1f1f33;
    border-color: #bc13fe;
    box-shadow: 0 0 5px rgba(188, 19, 254, 0.4);
    color: #fff;
}

.game-detail-template .form-label {
    color: #b0b0c3 !important;
}

.game-detail-template .comment-input-area .form-outline {
    position: relative;
    padding-top: 1.35rem;
}

.game-detail-template .comment-input-area .form-label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    transform: none !important;
    font-size: 0.875rem;
    line-height: 1;
    color: #b0b0c3 !important;
    pointer-events: none;
    opacity: 0.9;
}

.game-detail-template .comment-input-area textarea.form-control {
    padding-top: 0.9rem;
}

.game-detail-template .comment-input-area textarea.form-control::placeholder {
    color: #7f7f9b;
    opacity: 1;
}

.footer-scc__email {
    color: #00d2ff;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 0.35rem;
    text-decoration: none;
    word-break: break-word;
}

.footer-scc__email:hover {
    color: #ffffff;
}

.policy-section {
    background-color: #0a0a12;
    display: block;
    min-height: auto;
    padding: 60px 16px;
}

.policy-section .container {
    padding-left: 16px;
    padding-right: 16px;
}

.policy-content-wrapper {
    background: #161625 !important;
    border: 1px solid rgba(188, 19, 254, 0.22) !important;
    border-radius: 16px !important;
    color: #b0b0c3 !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.75 !important;
    margin: 0 auto !important;
    max-width: 1000px !important;
    padding: clamp(24px, 5vw, 48px) !important;
}

.terms-container {
    background: #161625 !important;
    border: 1px solid rgba(188, 19, 254, 0.22) !important;
    border-radius: 16px !important;
    color: #b0b0c3 !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.75 !important;
    margin: 60px auto !important;
    max-width: 1000px !important;
    padding: clamp(24px, 5vw, 48px) !important;
}

.policy-content-wrapper h1,
.policy-content-wrapper .terms-header,
.policy-content-wrapper .policy-main-heading,
.terms-container .terms-header {
    border-bottom: 3px solid #bc13fe !important;
    color: #ffffff !important;
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    letter-spacing: 1px !important;
    margin: 0 0 1.5rem !important;
    padding-bottom: 0.75rem !important;
    text-transform: uppercase !important;
}

.policy-content-wrapper h2,
.policy-content-wrapper h3,
.terms-container h2,
.terms-container h3 {
    border: 0 !important;
    border-left: 4px solid #bc13fe !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.15rem, 3vw, 1.5rem) !important;
    letter-spacing: 0.5px !important;
    margin: 2rem 0 1rem !important;
    padding: 0 0 0 1rem !important;
    text-transform: uppercase !important;
}

.policy-content-wrapper p,
.policy-content-wrapper li,
.terms-container p,
.terms-container li {
    color: #b0b0c3 !important;
    font-size: 1rem !important;
}

.policy-content-wrapper ul,
.terms-container ul {
    margin-bottom: 1.5rem !important;
    padding-left: 1.25rem !important;
}

.policy-content-wrapper li,
.terms-container li {
    margin-bottom: 0.75rem !important;
    padding-left: 0.25rem !important;
}

.policy-content-wrapper li::before,
.terms-container li::before {
    content: none !important;
}

.terms-container .terms-content-block {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 1.8rem !important;
    padding: 0 !important;
}

.terms-container .terms-content-block:hover {
    transform: none !important;
}

@media (max-width: 767.98px) {
    .policy-section {
        padding: 36px 12px;
    }

    .policy-content-wrapper {
        padding: 22px 16px !important;
    }

    .terms-container {
        margin: 36px auto !important;
        padding: 22px 16px !important;
    }
}
