:root {
    --primary: #FF00FF;
    --secondary: #00FFFF;
    --accent: #7000FF;
    --background-main: #0A0B1E;
    --background-card: #161832;
    --text-primary-light: #FFFFFF;
    --text-secondary-light: #A0A0B8;
    --border-color: rgba(255, 0, 255, 0.3);
    --glow-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

body {
    background-color: var(--background-main);
    color: var(--text-primary-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.bg-main-theme {
    background-color: var(--background-main);
}

* {
    box-sizing: border-box;
}

/* ===== header ===== */
.konsoslova-games-header .navbar {
    background-color: #0A0B1E !important;
    border-bottom: 2px solid rgba(255, 0, 255, 0.4);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

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

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

.konsoslova-games-header .nav-link {
    color: #A0A0B8 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.konsoslova-games-header .nav-link:hover,
.konsoslova-games-header .nav-link:focus {
    color: #00FFFF !important;
}

.konsoslova-games-header .custom-toggler {
    border: none;
    color: #FF00FF;
    font-size: 1.75rem;
    padding: 0;
}

.konsoslova-games-header .custom-toggler:focus {
    box-shadow: none;
}

.konsoslova-games-header .btn-cta-header {
    background-color: #FF00FF;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: inline-block;
}

.konsoslova-games-header .btn-cta-header:hover {
    background-color: #D600D6;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .konsoslova-games-header .navbar-collapse {
        background-color: #161832;
        margin-top: 0.75rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 255, 0.2);
    }

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

    .konsoslova-games-header .btn-cta-header {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.konsoslova-games-hero {
    min-height: 100vh;
    background-color: #0A0B1E;
    padding: 120px 0;
    z-index: 1;
}

.konsoslova-games-hero-bg {
    background-image: linear-gradient(rgba(10, 11, 30, 0.8), rgba(10, 11, 30, 0.8)),
    url('{{img-9}}');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.konsoslova-games-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 30% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 40%);
}

.konsoslova-games-hero-badge {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid #FF00FF;
    color: #FF00FF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.konsoslova-games-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.konsoslova-games-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #A0A0B8;
    max-width: 540px;
    line-height: 1.6;
}

.konsoslova-games-btn-primary {
    background: #FF00FF;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.konsoslova-games-btn-primary:hover {
    background: #E600E6;
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.konsoslova-games-btn-secondary {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.konsoslova-games-btn-secondary:hover {
    background: #00FFFF;
    color: #0A0B1E;
}

.konsoslova-games-hero-disclaimer {
    border-left: 3px solid #7000FF;
    padding-left: 20px;
    color: #4A4A68;
    max-width: 500px;
}

.konsoslova-games-hero-visual-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.konsoslova-games-hero-visual {
    position: relative;
    z-index: 2;
}

.konsoslova-games-character-img {
    max-width: 120%;
    width: 120%;
    transform: translateX(10%);
    pointer-events: none;
}

.konsoslova-games-floating-cta {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 3;
}

.konsoslova-games-cta-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF00FF 0%, #7000FF 100%);
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.konsoslova-games-cta-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 1;
}

.konsoslova-games-cta-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 0.9;
}

.konsoslova-games-floating-element {
    position: absolute;
    bottom: 15%;
    right: 0;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

@media (max-width: 991.98px) {
    .konsoslova-games-hero {
        padding: 80px 0;
        min-height: auto;
    }

    .konsoslova-games-hero-content {
        text-align: center;
        display: flex;
        flex-column: column;
        align-items: center;
    }

    .konsoslova-games-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .konsoslova-games-hero-actions {
        justify-content: center;
    }

    .konsoslova-games-hero-visual-wrapper {
        margin-top: 4rem;
        justify-content: center;
    }

    .konsoslova-games-character-img {
        width: 100%;
        transform: none;
    }

    .konsoslova-games-floating-cta {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .konsoslova-games-cta-circle {
        width: 100px;
        height: 100px;
    }

    .konsoslova-games-cta-value {
        font-size: 1.3rem;
    }

    .konsoslova-games-cta-label {
        font-size: 0.7rem;
    }

    .konsoslova-games-hero-title {
        font-size: 2.5rem;
    }
}

/* ===== features ===== */
.konsoslova-games-features {
    background-color: #0A0B1E;
    overflow: hidden;
}

.konsoslova-games-features .feature-card {
    background: #161832;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.konsoslova-games-features .feature-card:hover {
    border-color: #FF00FF;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.konsoslova-games-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF00FF, #00FFFF);
    border-radius: 12px 12px 0 0;
    opacity: 0.5;
}

.konsoslova-games-features .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(112, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.konsoslova-games-features .feature-icon-wrapper i {
    font-size: 2.5rem;
    color: #00FFFF;
}

.konsoslova-games-features .text-secondary-light {
    color: #A0A0B8 !important;
    line-height: 1.6;
}

.konsoslova-games-features .btn-action {
    background: linear-gradient(135deg, #FF00FF 0%, #7000FF 100%);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    transition: filter 0.3s ease;
}

.konsoslova-games-features .btn-action:hover {
    filter: brightness(1.2);
    color: #FFFFFF;
}

.konsoslova-games-features .tracking-widest {
    letter-spacing: 0.2em;
}

/* ===== games-showcase ===== */
.games-showcase-block {
    background-color: #0A0B1E;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.games-showcase-block .section-title {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px
}

.games-showcase-block .filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.games-showcase-block .filter-btn {
    background: transparent;
    border: 2px solid #00FFFF;
    color: #00FFFF;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
    cursor: pointer
}

.games-showcase-block .filter-btn.active,
.games-showcase-block .filter-btn:hover {
    background: #00FFFF;
    color: #0A0B1E;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5)
}

.games-showcase-block .game-card {
    background: #161832;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative
}

.games-showcase-block .game-card:hover {
    border-color: #FF00FF;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    transform: translateY(-5px)
}

.games-showcase-block .img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px 12px 0 0
}

.games-showcase-block .game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s
}

.games-showcase-block .game-card:hover .game-img {
    transform: scale(1.1)
}

.games-showcase-block .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.games-showcase-block .game-title {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center
}

.games-showcase-block .game-title i {
    color: #FF00FF
}

.games-showcase-block .game-desc {
    color: #A0A0B8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5
}

.games-showcase-block .btn-play {
    background: #FF00FF;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block
}

.games-showcase-block .btn-play:hover {
    background: #d600d6;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6)
}

.games-showcase-block .disclaimer-text {
    color: #FFFFFF;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 20px;
    background: rgba(10, 11, 30, 0.75);
    border-radius: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

@media(max-width:768px) {
    .games-showcase-block .section-title {
        font-size: 1.5rem
    }

    .games-showcase-block .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem
    }
}

/* ===== community ===== */
.quant-community-section {
    background-color: #0A0B1E;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.quant-community-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #FFFFFF !important;
}

.quant-community-subtitle {
    color: #A0A0B8;
    line-height: 1.6;
}

.quant-community-card {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.quant-community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.quant-card-icon {
    font-size: 2.5rem;
    color: #00FFFF;
    display: inline-block;
}

.quant-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #FF00FF;
    margin-bottom: 5px;
}

.quant-stat-label {
    color: #A0A0B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.quant-momentum-showcase {
    background: linear-gradient(135deg, rgba(22, 24, 50, 0.9) 0%, rgba(10, 11, 30, 0.9) 100%);
    border: 2px solid #7000FF;
    border-radius: 16px;
    position: relative;
}

.quant-btn-primary {
    background-color: #FF00FF;
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    transition: filter 0.3s;
}

.quant-btn-primary:hover {
    filter: brightness(1.2);
    color: #FFFFFF;
}

.quant-btn-secondary {
    background-color: transparent;
    color: #00FFFF;
    border: 1px solid #00FFFF;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.quant-btn-secondary:hover {
    background-color: #00FFFF;
    color: #0A0B1E;
}

.quant-avatar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quant-avatar-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid #7000FF;
    padding: 5px;
}

.quant-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quant-status-dot {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background-color: #00FF00;
    border: 2px solid #161832;
    border-radius: 50%;
    box-shadow: 0 0 10px #00FF00;
}

@media (max-width: 768px) {
    .quant-community-title {
        font-size: 1.8rem;
    }

    .quant-avatar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

/* ===== footer ===== */
.qnt-footer-section {
    background-color: #0A0B1E;
    color: #A0A0B8;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.qnt-footer-logo {
    max-width: 45px;
    object-fit: contain;
}

.qnt-text-secondary {
    color: #A0A0B8;
}

.qnt-footer-link {
    color: #A0A0B8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.qnt-footer-link:hover {
    color: #00FFFF;
}

.qnt-disclaimer-box {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.1);
}

.qnt-accent-icon {
    color: #FF00FF;
}

.qnt-divider {
    border-top: 1px solid rgba(160, 160, 184, 0.1);
    opacity: 1;
}

.qnt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 30, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.qnt-modal-content {
    background: #161832;
    border: 2px solid #FF00FF;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.qnt-btn-primary {
    background: #FF00FF;
    color: #FFFFFF;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 24px;
    transition: background 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.qnt-btn-primary:hover {
    background: #D000D0;
    color: #FFFFFF;
}

.qnt-btn-secondary {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.qnt-btn-secondary:hover {
    background: #00FFFF;
    color: #0A0B1E;
}

/* Scoped Styles for Games Catalog Template */
.qnt-catalog-page {
    background-color: #0A0B1E;
    color: #FFFFFF;
    padding-top: 80px;
}

/* Hero Section */
.qnt-hero-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(112, 0, 255, 0.1) 0%, rgba(10, 11, 30, 0) 100%);
}

.qnt-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.qnt-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #A0A0B8;
    max-width: 700px;
    line-height: 1.6;
}

/* Filters & Search */
.qnt-catalog-controls {
    background-color: #161832;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.qnt-search-wrapper {
    position: relative;
}

.qnt-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00FFFF;
    font-size: 1.25rem;
}

.qnt-search-input {
    background-color: #0A0B1E !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    color: #FFFFFF !important;
    padding: 12px 12px 12px 45px !important;
    border-radius: 8px !important;
}

.qnt-search-input::placeholder {
    color: #4A4A68 !important;
    opacity: 1;
}

.qnt-filter-btn {
    background-color: transparent !important;
    border: 1px solid rgba(160, 160, 184, 0.3) !important;
    color: #A0A0B8 !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.qnt-filter-btn:hover,
.qnt-filter-btn.active {
    background-color: #FF00FF !important;
    border-color: #FF00FF !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4) !important;
}

/* Game Cards */
.qnt-game-card {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.qnt-game-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
}

.qnt-card-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.qnt-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
}

.qnt-game-card:hover .qnt-card-img {
    scale: 1.1;
}

.qnt-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qnt-game-card:hover .qnt-card-overlay {
    opacity: 1;
}

.qnt-btn-action {
    background-color: #00FFFF;
    color: #0A0B1E;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qnt-btn-action:hover {
    background-color: #FFFFFF;
    color: #0A0B1E;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.qnt-badge {
    display: inline-block;
    background-color: rgba(0, 255, 255, 0.1);
    color: #00FFFF;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.qnt-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
}

/* Article Section */
.qnt-article-content {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 16px;
}

.qnt-article-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #FF00FF;
}

.qnt-article-body {
    color: #A0A0B8;
    line-height: 1.8;
}

/* Header/Footer Integration */
.konsoslova-games-header .navbar {
    background-color: #0A0B1E !important;
    border-bottom: 2px solid rgba(255, 0, 255, 0.4);
    padding: 0.75rem 0;
}

.konsoslova-games-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
}

.konsoslova-games-header .nav-link {
    color: #A0A0B8 !important;
    font-weight: 600;
}

.konsoslova-games-header .nav-link:hover {
    color: #00FFFF !important;
}

.konsoslova-games-header .btn-cta-header {
    background-color: #FF00FF;
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.qnt-footer-section {
    background-color: #0A0B1E;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.qnt-disclaimer-box {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.3) !important;
}

.qnt-accent-icon {
    color: #FF00FF;
}

@media (max-width: 991.98px) {
    .qnt-hero-section {
        padding: 40px 0;
    }

    .qnt-hero-title {
        font-size: 2rem;
    }

    .qnt-filter-btns {
        margin-top: 1rem;
    }
}


/* ===== PAGE: about ===== */
.about-section {
  background-color: #0A0B1E;
  color: #FFFFFF;
  overflow: hidden;
}
.about-section .text-primary-accent {
  color: #FF00FF;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.about-section .text-cyan {
  color: #00FFFF;
}
.about-section .text-magenta {
  color: #FF00FF;
}
.about-section .text-accent-violet {
  color: #7000FF;
}
.about-section .text-secondary-light {
  color: #A0A0B8;
}
.about-section .stat-box {
  border-color: rgba(0, 255, 255, 0.3) !important;
}
.about-section .image-glow-container {
  position: relative;
  padding: 10px;
}
.about-section .image-glow-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
  z-index: -1;
}
.about-section .pillar-card {
  background: #161832;
  border: 1px solid rgba(255, 0, 255, 0.1);
  border-top: 3px solid #FF00FF;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-section .pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(112, 0, 255, 0.2);
}
.about-section .interactive-info-block {
  background: linear-gradient(135deg, #161832 0%, #0A0B1E 100%);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}
.about-section .btn-pillar {
  text-align: left;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #A0A0B8;
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-section .btn-pillar.active {
  background: #FF00FF;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}
.about-section .btn-pillar:hover:not(.active) {
  border-color: #00FFFF;
  color: #00FFFF;
}
.about-section img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .about-section h1 {
    font-size: 1.8rem;
  }
  .about-section h2 {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: contacts ===== */
.support-block-container {
  background-color: #0A0B1E;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.support-block-container__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.support-block-container__badge {
  background: rgba(255, 0, 255, 0.15);
  border: 1px solid #FF00FF;
  color: #FF00FF;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.support-block-container__search-box {
  background: #161832;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.support-block-container .js-support-search::placeholder {
  color: #A0A0B8 !important;
  opacity: 1;
}

.support-block-container .js-support-search:focus {
  outline: none;
  box-shadow: none;
}

.support-block-container__card {
  background: #161832;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-block-container__card:hover {
  border-color: rgba(255, 0, 255, 0.5);
  transform: translateY(-5px);
}

.support-block-container__image-wrap {
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}

.support-block-container__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-magenta {
  color: #FF00FF;
}

.text-cyan {
  color: #00FFFF;
}

.text-violet {
  color: #7000FF;
}

.text-secondary-light {
  color: #A0A0B8;
}

.support-block-container__disclaimer-box {
  background: rgba(112, 0, 255, 0.05);
  border: 1px dashed rgba(112, 0, 255, 0.3);
}

@media (max-width: 768px) {
  .support-block-container__title {
    font-size: 1.75rem;
  }
  .support-block-container__image-wrap {
    height: 150px;
  }
}

/* ===== PAGE: achievements ===== */
.achievements-list-section {
  background-color: #0A0B1E;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.achievements-list-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FF00FF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.achievements-list-section__desc {
  color: #A0A0B8;
  font-size: 1.1rem;
}

.achievements-list-section__filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00FFFF;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.achievements-list-section__filter-btn:hover,
.achievements-list-section__filter-btn.active {
  background: #00FFFF;
  color: #0A0B1E;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.achievements-list-section__card {
  background: #161832;
  border: 2px solid rgba(255, 0, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.achievements-list-section__card:hover {
  border-color: #FF00FF;
}

.achievements-list-section__card-icon {
  font-size: 2.5rem;
  color: #00FFFF;
  margin-bottom: 20px;
  line-height: 1;
}

.achievements-list-section__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.achievements-list-section__card-text {
  color: #A0A0B8;
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.achievements-list-section__progress-wrapper {
  margin-bottom: 20px;
}

.achievements-list-section__progress-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #A0A0B8;
}

.achievements-list-section__progress-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: #00FFFF;
}

.achievements-list-section .progress {
  height: 8px;
  background: #0A0B1E;
  border-radius: 4px;
  overflow: hidden;
}

.achievements-list-section .progress-bar {
  background: linear-gradient(90deg, #FF00FF, #7000FF);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.achievements-list-section__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
}

.achievements-list-section__badge.locked {
  background: rgba(160, 160, 184, 0.1);
  color: #A0A0B8;
  border: 1px solid rgba(160, 160, 184, 0.3);
}

@media (max-width: 768px) {
  .achievements-list-section__title {
    font-size: 1.5rem;
  }
  .achievements-list-section__filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ===== PAGE: online-players ===== */
.leaderboard-section { background-color: #0A0B1E; min-height: 80vh; }
.leaderboard-section .leaderboard-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #FFFFFF; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
.leaderboard-section .leaderboard-card { background-color: #161832; border: 1px solid rgba(255, 0, 255, 0.2); border-radius: 12px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); overflow: hidden; }
.leaderboard-section .table { color: #1f2937; border-collapse: separate; border-spacing: 0; background-color: #FFFFFF !important; --bs-table-bg: #FFFFFF; }
.leaderboard-section .table thead th { border-bottom: 2px solid rgba(112, 0, 255, 0.2); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; padding: 1.25rem 0.75rem; background-color: #f3f4f6 !important; color: #1f2937; }
.leaderboard-section .table tbody tr { transition: background-color 0.3s ease; border-bottom: 1px solid rgba(0, 0, 0, 0.08); background-color: #FFFFFF !important; }
.leaderboard-section .table tbody tr:hover { background-color: #f9fafb; }
.leaderboard-section .rank-badge { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(22, 24, 50, 1); border: 2px solid #4A4A68; font-weight: 800; font-size: 0.9rem; }
.leaderboard-section .rank-1 { border-color: #FFD700; color: #FFD700; box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.leaderboard-section .rank-2 { border-color: #C0C0C0; color: #C0C0C0; }
.leaderboard-section .rank-3 { border-color: #CD7F32; color: #CD7F32; }
.leaderboard-section .avatar-wrapper { width: 48px; height: 48px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg, #FF00FF, #00FFFF); }
.leaderboard-section .player-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #161832; }
.leaderboard-section .player-name { font-weight: 600; color: #1f2937; }
.leaderboard-section .level-tag { background: rgba(112, 0, 255, 0.2); border: 1px solid #7000FF; color: #00FFFF; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.leaderboard-section .progress-container { background: rgba(255, 255, 255, 0.1); height: 8px; border-radius: 4px; overflow: hidden; width: 100%; }
.leaderboard-section .progress-bar-fill { height: 100%; background: linear-gradient(90deg, #FF00FF, #7000FF); border-radius: 4px; }
.leaderboard-section .status-pill { font-size: 0.75rem; padding: 4px 10px; border-radius: 12px; font-weight: 600; display: inline-flex; align-items: center; }
.leaderboard-section .status-pill.online { background: rgba(0, 255, 0, 0.1); color: #00FF00; }
.leaderboard-section .search-box .form-control { background-color: #161832; border: 1px solid rgba(255, 0, 255, 0.3); color: #FFFFFF; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.leaderboard-section .search-box .form-control:focus { background-color: #1a1c3a; border-color: #FF00FF; box-shadow: 0 0 10px rgba(255, 0, 255, 0.2); color: #FFFFFF; }
.leaderboard-section .form-select { background-color: #161832; border: 1px solid rgba(0, 255, 255, 0.3); color: #FFFFFF; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.leaderboard-section .border-dashed { border: 1px dashed rgba(255, 255, 255, 0.2); }

/* ===== PAGE: daily-quests ===== */
.quests-list-section {
  background-color: #0A0B1E;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.quests-list-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FF00FF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quests-list-section__description {
  font-family: 'Inter', sans-serif;
  max-width: 600px;
}

.quests-list-section__card {
  background-color: #161832;
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.quests-list-section__card:hover {
  border-color: #FF00FF;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.quests-list-section__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}

.quests-list-section__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #00FFFF;
  margin-bottom: 12px;
}

.quests-list-section__card-text {
  color: #A0A0B8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.quests-list-section .progress {
  background-color: rgba(255, 255, 255, 0.05);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.quests-list-section .progress-bar {
  background: linear-gradient(90deg, #FF00FF, #7000FF);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.quests-list-section .btn-primary {
  background-color: #FF00FF !important;
  color: #FFFFFF !important;
  border: none !important;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
  padding: 10px 24px;
}

.quests-list-section .btn-secondary {
  background-color: transparent !important;
  color: #00FFFF !important;
  border: 1px solid #00FFFF !important;
  font-weight: 600;
  padding: 10px 24px;
}

.quests-list-section .btn-secondary:hover {
  background-color: rgba(0, 255, 255, 0.1) !important;
}

.quests-list-section .btn-primary.active,
.quests-list-section .btn-secondary.active {
  transform: translateY(-2px);
}

.text-accent {
  color: #7000FF;
}

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

@media (max-width: 767px) {
  .quests-list-section__title {
    font-size: 1.5rem;
  }
  .quests-list-section__card {
    padding: 20px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content { background-color: #0A0B1E; min-height: 60vh; color: #FFFFFF; font-family: 'Inter', sans-serif; } .privacy-content .privacy-card { background-color: #161832; border-radius: 12px; border: 1px solid rgba(255, 0, 255, 0.3); box-shadow: 0 0 20px rgba(255, 0, 255, 0.1); } .privacy-content h2 { color: #FF00FF; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.75rem; text-transform: uppercase; letter-spacing: 1px; } .privacy-content p { color: #A0A0B8; line-height: 1.8; font-size: 1.1rem; } .privacy-content .text-primary { color: #00FFFF !hi-important; } .privacy-content ul li span { color: #A0A0B8; } .privacy-content ul li i { font-size: 1.25rem; } @media (max-width: 768px) { .privacy-content h2 { font-size: 1.4rem; } .privacy-content p { font-size: 1rem; } }

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

.terms-section h1, .terms-section h2, .terms-section h3 {
  font-family: 'Montserrat', sans-serif;
}

.terms-section .text-primary {
  color: #FF00FF !important;
}

.terms-sidebar {
  top: 100px;
  z-index: 10;
}

.terms-nav-card {
  background: #161832;
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
}

.terms-nav-card .nav-link {
  color: #A0A0B8;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.terms-nav-card .nav-link:hover,
.terms-nav-card .nav-link.active {
  background: rgba(255, 0, 255, 0.1);
  color: #FF00FF;
  box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.2);
}

.terms-promo-card {
  background: #161832;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.terms-content-card {
  background: #161832;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-anchor {
  scroll-margin-top: 120px;
}

.terms-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.terms-section ul li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  .terms-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .terms-nav-card .nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
  }
  .terms-nav-card .nav-item {
    flex: 1 1 auto;
  }
  .terms-nav-card .nav-link {
    text-align: center;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .terms-content-card {
    padding: 1.5rem !important;
  }
  .terms-section h2 {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content {
  background-color: #0A0B1E;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.disclaimer-content .disclaimer-card {
  background-color: #161832;
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.disclaimer-content .disclaimer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF00FF, #7000FF);
}

.disclaimer-content .disclaimer-icon {
  font-size: 3rem;
  color: #FF00FF;
  filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.disclaimer-content .disclaimer-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-content .disclaimer-accent-line {
  width: 80px;
  height: 3px;
  background-color: #00FFFF;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.disclaimer-content .disclaimer-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00FFFF;
  margin-bottom: 1rem;
}

.disclaimer-content .disclaimer-text {
  color: #A0A0B8;
  font-size: 1.1rem;
  text-align: justify;
}

.disclaimer-content .disclaimer-small-text {
  font-size: 0.9rem;
  color: #7000FF;
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-content .disclaimer-main-title {
    font-size: 1.75rem;
  }
  .disclaimer-content .disclaimer-subtitle {
    font-size: 1.25rem;
  }
  .disclaimer-content .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* ===== PAGE: rgp ===== */
.rgp-content {
  background-color: #0A0B1E;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.rgp-content .policy-main-card {
  background: #161832;
  border-radius: 12px;
  border-top: 3px solid #FF00FF;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.rgp-content .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FF00FF;
  letter-spacing: 1px;
}

.rgp-content .alert-custom {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00FFFF;
  color: #00FFFF;
}

.rgp-content .info-box {
  background: #161832;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 255, 0.1);
  transition: border-color 0.3s ease;
}

.rgp-content .info-box:hover {
  border-color: #FF00FF;
}

.rgp-content .icon-wrapper i {
  font-size: 2.5rem;
}

.rgp-content .custom-list li {
  margin-bottom: 12px;
  color: #A0A0B8;
}

.rgp-content .custom-list i {
  color: #00FFFF;
}

.rgp-content .badge {
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.rgp-content .bg-accent {
  background-color: #7000FF !important;
}

.rgp-content .tools-section {
  background: linear-gradient(135deg, #161832 0%, #0A0B1E 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.rgp-content .tool-card i {
  font-size: 3rem;
  color: #FF00FF;
  display: block;
}

.rgp-content .tool-card h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.rgp-content .age-verification-box {
  background: rgba(112, 0, 255, 0.1);
  border-radius: 12px;
  border: 2px dashed #7000FF;
}

.rgp-content .age-verification-box i {
  font-size: 3rem;
  color: #7000FF;
}

.rgp-content .faq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 30, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 20px;
}

.rgp-content .faq-content {
  background: #161832;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #FF00FF;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.rgp-content .btn-close-custom {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rgp-content .btn-close-custom:hover {
  color: #FF00FF;
}

.rgp-content .accordion-button {
  background-color: transparent !important;
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
}

.rgp-content .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #00FFFF !important;
}

.rgp-content .accordion-button::after {
  filter: invert(1);
}

.rgp-content .accordion-body {
  color: #A0A0B8;
  padding: 1rem;
}

.rgp-content .btn-secondary {
  background-color: transparent;
  border: 2px solid #00FFFF;
  color: #00FFFF;
  font-weight: 600;
  transition: all 0.3s ease;
}

.rgp-content .btn-secondary:hover {
  background-color: #00FFFF;
  color: #0A0B1E;
}

@media (max-width: 768px) {
  .rgp-content .h1, .rgp-content h1 { font-size: 1.5rem; }
  .rgp-content .h2, .rgp-content h2 { font-size: 1.25rem; }
  .rgp-content .h3, .rgp-content h3 { font-size: 1.1rem; }
  .rgp-content .faq-content { padding: 20px; }
}

.q-comment-main {
    background: #161832;
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.q-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF00FF, #7000FF);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
    object-fit: cover;
}

.q-user-name {
    color: #FF00FF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.q-timestamp {
    color: #A0A0B8;
    font-size: 0.85rem;
}

.q-comment-text {
    color: #FFFFFF;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.q-action-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.q-btn-like {
    color: #00FFFF;
}

.q-btn-reply {
    color: #7000FF;
}

.q-comment-reply {
    background: rgba(22, 24, 50, 0.6);
    border-left: 3px solid #00FFFF;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem;
    margin-left: 3.5rem;
    margin-bottom: 1rem;
}

.q-avatar-reply {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FFFF, #7000FF);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    object-fit: cover;
}

.q-user-name-small {
    color: #00FFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.q-comment-text-small {
    color: #FFFFFF;
    line-height: 1.5;
    margin-top: 0.4rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}


/* ===== PAGE TEMPLATE: games-list ===== */
.qnt-game-detail-page {
    background-color: #0A0B1E;
    overflow-x: hidden;
}

.qnt-game-viewer-section {
    background: #000;
    position: relative;
}

.qnt-iframe-container {
    width: 100%;
    height: 600px;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qnt-game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.qnt-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 30, 0.8);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.qnt-iframe-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.qnt-btn-play {
    background: #FF00FF;
    color: #FFF;
    font-weight: 800;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    border: none;
}

.qnt-btn-play:hover {
    background: #D000D0;
    color: #FFF;
}

.qnt-btn-exit-fs {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(255, 0, 255, 0.8);
    color: #FFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qnt-card-main,
.qnt-sidebar-card {
    background-color: #161832;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
}

.text-cyan {
    color: #00FFFF;
}

.qnt-spec-list li {
    font-size: 0.95rem;
    color: #A0A0B8;
}

.qnt-rich-text p {
    line-height: 1.8;
    color: #A0A0B8;
}

.qnt-input {
    background-color: #0A0B1E !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    color: #FFF !important;
    border-radius: 4px;
}

.qnt-input::placeholder {
    color: #4A4A68 !important;
}

.qnt-comment-form-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px dashed rgba(0, 255, 255, 0.2);
}

.q-comment-main {
    border-bottom: 1px solid rgba(160, 160, 184, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.q-avatar {
    width: 48px;
    height: 48px;
    background: #7000FF;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.q-user-name {
    color: #FFF;
    font-weight: 700;
}

.q-timestamp {
    font-size: 0.8rem;
    color: #4A4A68;
}

.q-comment-text {
    color: #A0A0B8;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.q-action-btn {
    background: transparent;
    border: none;
    color: #00FFFF;
    font-size: 0.85rem;
    padding: 0;
    transition: opacity 0.2s;
}

.q-action-btn:hover {
    opacity: 0.7;
}

.q-comment-reply {
    margin-left: 3rem;
    margin-top: 1rem;
    border-left: 2px solid #FF00FF;
    padding-left: 1rem;
}

.qnt-btn-fullscreen {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 11;
    background: rgba(255, 0, 255, 0.8);
    color: #FFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.qnt-btn-fullscreen:hover {
    background: rgba(255, 0, 255, 1);
}

.qnt-responsible-links {
    flex-wrap: wrap;
    gap: 15px;
}

.qnt-responsible-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.qnt-responsible-link:hover {
    opacity: 0.8;
}

.qnt-responsible-link img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.qnt-18-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qnt-18-plus img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

    .qnt-btn-play {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .q-comment-reply {
        margin-left: 1.5rem;
    }
}