:root {
    --primary-gold: #FFD700;
    --primary-bronze: #CD7F32;
    --deep-obsidian: #0A0A0A;
    --royal-purple: #6A0DAD;
    --lapis-blue: #0047AB;
    --crimson-turbo: #DC143C;
    --bg-dark: #050505;
    --surface-card: #121212;
    --elevated-panel: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted-color: #666666;
    --neon-sand: #F4A460;
}

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

.brand-header-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

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

.smooth-transition {
    transition: all 0.3s ease-in-out;
}

.global-box-sizing {
    box-sizing: border-box;
}

.glowing-border {
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.speed-streak-hover:hover {
    box-shadow: 0 0 20px var(--glowing-trail);
    transform: scale(1.02);
}

/* ===== header ===== */
.header-ancient {
    position: relative;
    z-index: 1050;
}

.header-ancient .navbar {
    background-color: #0A0A0A !important;
    padding: 0.75rem 0;
    position: relative;
}

.header-ancient .navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.header-ancient .navbar-brand .brand-text {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.header-ancient .navbar-brand img {
    max-width: 45px;
    height: 45px;
    object-fit: contain;
}

.header-ancient .nav-link {
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.header-ancient .nav-link:hover {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.header-ancient .navbar-toggler {
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.header-ancient .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.header-ancient .dropdown-menu {
    background-color: #121212;
    border: 1px solid #FFD700;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-ancient .dropdown-item {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.2s ease;
}

.header-ancient .dropdown-item:last-child {
    border-bottom: none;
}

.header-ancient .dropdown-item:hover {
    background-color: #FFD700;
    color: #0A0A0A;
}

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

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

    .header-ancient .dropdown-menu {
        background-color: #1A1A1A;
        border: none;
        padding-left: 1rem;
    }
}

/* ===== hero ===== */
.hero-ancient-fusion {
    min-height: 100vh;
    background-color: #050505;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.z-index-2 {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-top: -5vh;
}

.hero-description {
    max-width: 700px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #B0B0B0;
    hyphens: auto;
}

.hero-btn-primary {
    background: #FFD700;
    color: #0A0A0A;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    background: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    color: #0A0A0A;
}

.hero-btn-secondary {
    background: rgba(106, 13, 173, 0.2);
    color: #FFFFFF;
    border: 1px solid #6A0DAD;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-btn-secondary:hover {
    background: #6A0DAD;
    transform: scale(1.05);
    color: #FFFFFF;
}

.hero-character-render {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60vh;
    background-image: url('../frontend/visuals/media/ancient-warrior-render.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-character-render {
        height: 40vh;
        opacity: 0.5;
    }
}

/* ===== about_preview ===== */
.about-preview-section {
    background-color: #050505;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.about-preview-section .about-preview-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-preview-section .about-preview-lead {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #B0B0B0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-preview-section .about-preview-text {
    font-family: 'Inter', sans-serif;
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
}

.about-preview-section .btn-turbo-arcade {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #6A0DAD;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-preview-section .btn-turbo-arcade:hover {
    background: #FFD700;
    color: #0A0A0A;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.about-preview-section .visual-frame {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: #121212;
}

.about-preview-section .visual-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
}

.about-preview-section .speed-streak-top,
.about-preview-section .speed-streak-bottom {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.about-preview-section .speed-streak-top {
    top: -1px;
    left: 10%;
}

.about-preview-section .speed-streak-bottom {
    bottom: -1px;
    right: 10%;
}

@media (max-width: 768px) {
    .about-preview-section .about-preview-title {
        font-size: 1.5rem;
    }

    .about-preview-section .visual-frame img {
        height: 250px;
    }
}

/* ===== games_preview ===== */
.games-preview-section {
    background-color: #050505;
    background-image: radial-gradient(circle at center, rgba(205, 127, 50, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.games-preview-section .text-gold-rush {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.games-preview-section .text-light-secondary {
    color: #B0B0B0;
}

.games-preview-section .speed-streak-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin-top: 1rem;
}

.games-preview-section .game-tablet-card {
    perspective: 1000px;
    height: 100%;
    transition: transform 0.3s ease;
}

.games-preview-section .tablet-inner {
    background: #121212;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.games-preview-section .game-tablet-card:hover .tablet-inner {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.games-preview-section .tablet-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133%;
    overflow: hidden;
}

.games-preview-section .tablet-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.games-preview-section .tablet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.games-preview-section .tablet-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #1A1A1A 0%, #121212 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.games-preview-section .tablet-content h3 {
    font-size: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .games-preview-section .display-4 {
        font-size: 1.5rem;
    }

    .games-preview-section .tablet-content h3 {
        font-size: 0.9rem;
    }
}

/* ===== features ===== */
.mw-features {
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.mw-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.5;
}

.mw-features-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mw-features-subtitle {
    font-family: 'Inter', sans-serif;
    color: #B0B0B0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.mw-feature-card {
    background: #121212;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.mw-feature-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.mw-feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
    border: 2px solid #CD7F32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.mw-feature-card:hover .mw-feature-icon-box {
    border-color: #FFD700;
    background: #FFD700;
}

.mw-feature-icon-box i {
    font-size: 2.5rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.mw-feature-card:hover .mw-feature-icon-box i {
    color: #0A0A0A;
}

.mw-feature-card-title {
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.mw-feature-card-text {
    font-family: 'Inter', sans-serif;
    color: #B0B0B0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mw-features-cta {
    display: inline-block;
    background: #FFD700;
    color: #0A0A0A;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mw-features-cta:hover {
    background: #FFFFFF;
    color: #0A0A0A;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .mw-features-title {
        font-size: 1.5rem;
    }

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

    .mw-feature-card {
        padding: 1.5rem !important;
    }
}

/* ===== footer ===== */
.maple-whim-footer {
    background-color: #050505;
    color: #FFFFFF;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.maple-whim-footer .footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.maple-whim-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.maple-whim-footer .footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.maple-whim-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.maple-whim-footer .footer-text {
    color: #B0B0B0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.maple-whim-footer .footer-link {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.maple-whim-footer .footer-link:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.maple-whim-footer .footer-contact-link {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.maple-whim-footer .footer-contact-link:hover {
    color: #FFD700;
}

.maple-whim-footer .footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    margin-top: 40px;
}

.maple-whim-footer .footer-copyright {
    color: #666666;
    font-size: 0.875rem;
}

.maple-whim-footer .footer-legal-links {
    color: #666666;
    font-size: 0.875rem;
}

.maple-whim-footer .footer-legal-link {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.maple-whim-footer .footer-legal-link:hover {
    color: #B0B0B0;
}

@media (max-width: 767px) {
    .maple-whim-footer {
        padding-top: 50px;
    }

    .maple-whim-footer .footer-heading {
        font-size: 1.1rem;
    }

    .maple-whim-footer .footer-legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .maple-whim-footer .footer-legal-links span {
        display: none;
    }
}

/* ===== PAGE: about ===== */
.mw-about-history, .mw-about-vision { background-color: #050505; color: #FFFFFF; font-family: 'Inter', sans-serif; overflow: hidden; } .mw-history-title { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 3rem; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; } .mw-subtitle { font-family: 'Orbitron', sans-serif; color: #CD7F32; font-size: 1.5rem; } .mw-speed-streak { height: 2px; width: 100px; background: linear-gradient(90deg, transparent, #FFD700, transparent); } .mw-text { color: #B0B0B0; line-height: 1.8; font-size: 1.1rem; } .mw-stat-number { display: block; font-family: 'Orbitron', sans-serif; font-size: 2rem; color: #FFD700; font-weight: 700; } .mw-stat-label { color: #666666; font-size: 0.875rem; text-transform: uppercase; } .mw-history-img { border: 1px solid rgba(255, 215, 0, 0.2); object-fit: cover; width: 100%; height: 450px; } .mw-image-wrapper .mw-glow-border { position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border: 1px solid rgba(255, 215, 0, 0.1); pointer-events: none; z-index: -1; box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); } .mw-vision-card { background-color: #121212; border: 1px solid rgba(255, 215, 0, 0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .mw-vision-title { font-family: 'Orbitron', sans-serif; font-weight: 700; color: #FFD700; text-transform: uppercase; letter-spacing: 3px; } .mw-v-item { background: #1A1A1A; border: 1px solid rgba(255, 255, 255, 0.05); height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; } .mw-v-item:hover { transform: translateY(-10px); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); } .mw-v-icon { font-size: 2.5rem; color: #FFD700; } .mw-v-title { font-family: 'Orbitron', sans-serif; font-size: 1.25rem; color: #FFFFFF; margin-bottom: 1rem; } .mw-v-desc { color: #B0B0B0; font-size: 0.95rem; line-height: 1.6; } @media (max-width: 768px) { .mw-history-title { font-size: 1.8rem; } .mw-subtitle { font-size: 1.2rem; } .mw-history-img { height: 300px; } .mw-v-title { font-size: 1.1rem; } .mw-v-desc { font-size: 0.85rem; } }

/* ===== PAGE: game-room ===== */
.mw-games-catalog { background-color: #050505; color: #FFFFFF; font-family: 'Inter', sans-serif; min-height: 800px; position: relative; overflow: hidden; } .mw-games-catalog .catalog-title { font-family: 'Orbitron', sans-serif; color: #FFD700; text-transform: uppercase; font-weight: 900; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); } .mw-games-catalog .catalog-subtitle { color: #B0B0B0; font-size: 1.1rem; } .mw-games-catalog .catalog-search-wrapper { max-width: 500px; } .mw-games-catalog .border-gold { border: 1px solid rgba(255, 215, 0, 0.3); } .mw-games-catalog .input-group-text { color: #FFD700; } .mw-games-catalog .form-control:focus { box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); border-color: #FFD700; color: #fff; } .mw-games-catalog .game-card { background: #121212; border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 4px; transition: all 0.3s ease; position: relative; height: 100%; display: flex; flex-direction: column; } .mw-games-catalog .game-card:hover { transform: translateY(-5px); border-color: #FFD700; box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2); } .mw-games-catalog .game-image-box { position: relative; aspect-ratio: 16/9; overflow: hidden; border-bottom: 2px solid #FFD700; } .mw-games-catalog .game-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .mw-games-catalog .game-card:hover .game-img { transform: scale(1.05); } .mw-games-catalog .game-info { padding: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .mw-games-catalog .game-name { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; color: #FFFFFF; margin-bottom: 1rem; line-height: 1.3; } .mw-games-catalog .btn-play { background: #FFD700; color: #0A0A0A; font-weight: 700; font-family: 'Orbitron', sans-serif; border: none; text-transform: uppercase; padding: 0.6rem 1rem; width: 100%; transition: all 0.2s ease; border-radius: 2px; } .mw-games-catalog .btn-play:hover { background: #FFF; transform: scale(1.02); } .mw-games-catalog .pagination-btn { background: #1A1A1A; border: 1px solid #FFD700; color: #FFD700; font-family: 'Orbitron', sans-serif; font-size: 0.8rem; padding: 8px 16px; transition: all 0.2s ease; } .mw-games-catalog .pagination-btn.active { background: #FFD700; color: #0A0A0A; } .mw-games-catalog .pagination-btn:hover:not(.active) { background: rgba(255, 215, 0, 0.1); }

/* ===== PAGE: leaderboard ===== */
.rankings-section {
  padding: 80px 0;
  background-color: #050505;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
}

.rankings-section .rankings-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.rankings-section .rankings-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.rankings-section .rankings-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.rankings-section .rank-tab-btn {
  background: #1A1A1A;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #B0B0B0;
  padding: 10px 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-right: -1px;
}

.rankings-section .rank-tab-btn:hover {
  color: #FFD700;
  background: #252525;
}

.rankings-section .rank-tab-btn.active {
  background: #FFD700;
  color: #0A0A0A;
  border-color: #FFD700;
}

.rankings-section .rankings-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.rankings-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
}

.rankings-section .rankings-search-input {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 4px;
  padding: 10px 15px 10px 45px;
  color: #FFFFFF;
  transition: border-color 0.3s ease;
}

.rankings-section .rankings-search-input:focus {
  outline: none;
  border-color: #FFD700;
}

.rankings-section .podium-card {
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.rankings-section .podium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rankings-section .podium-card.gold {
  border-color: #FFD700;
  background: linear-gradient(145deg, #1A1A1A 0%, #121212 100%);
  padding: 50px 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.rankings-section .rank-badge {
  width: 40px;
  height: 40px;
  background: #FFD700;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin: 0 auto 20px;
}

.rankings-section .podium-card.silver .rank-badge { background: #C0C0C0; }
.rankings-section .podium-card.bronze .rank-badge { background: #CD7F32; }

.rankings-section .avatar-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFD700;
}

.rankings-section .gold .avatar-container { width: 120px; height: 120px; border-color: #FFD700; }
.rankings-section .silver .avatar-container { border-color: #C0C0C0; }
.rankings-section .bronze .avatar-container { border-color: #CD7F32; }

.rankings-section .player-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rankings-section .player-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #FFFFFF;
}

.rankings-section .player-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 5px;
}

.rankings-section .player-title {
  font-size: 0.85rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rankings-section .rankings-table-container {
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rankings-section .table-header {
  display: grid;
  grid-template-columns: 80px 1fr 100px 150px 120px;
  background: #1A1A1A;
  padding: 15px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.rankings-section .rank-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px 150px 120px;
  padding: 15px 20px;
  align-items: center;
  text-align: center;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.rankings-section .rank-row:hover {
  background: rgba(255, 215, 0, 0.05);
}

.rankings-section .rank-num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #B0B0B0;
}

.rankings-section .player-info {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.rankings-section .table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.rankings-section .table-player-name {
  font-weight: 600;
  color: #FFFFFF;
}

.rankings-section .rank-level {
  color: #B0B0B0;
}

.rankings-section .rank-points {
  font-family: 'Orbitron', sans-serif;
  color: #FFD700;
  font-weight: 700;
}

.rankings-section .status-pill {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.rankings-section .status-pill.online {
  background: rgba(0, 255, 0, 0.1);
  color: #00FF00;
}

.rankings-section .status-pill.offline {
  background: rgba(255, 255, 255, 0.05);
  color: #666666;
}

@media (max-width: 767px) {
  .rankings-section .rankings-title { font-size: 1.75rem; }
  .rankings-section .rank-row {
    grid-template-columns: 50px 1fr 100px;
    gap: 10px;
    text-align: left;
  }
  .rankings-section .rank-level, .rankings-section .rank-status { display: none; }
  .rankings-section .rank-points { text-align: right; }
  .rankings-section .podium-card.gold { padding: 30px 20px; }
  .rankings-section .rank-tab-btn { padding: 8px 15px; font-size: 0.8rem; }
}

/* ===== PAGE: online-players ===== */
.players-grid-section {
  background-color: #050505;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  min-height: 80vh;
}

.players-grid-section__title {
  font-family: 'Orbitron', sans-serif;
  color: #FFD700;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.players-grid-section__subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
}

.players-grid-section__search-wrapper {
  position: relative;
  max-width: 400px;
  margin-left: auto;
}

.players-grid-section__search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD700;
  font-size: 1.2rem;
  z-index: 5;
}

.players-grid-section__search-input {
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #FFFFFF !important;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.players-grid-section__search-input:focus {
  background: #1A1A1A;
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  outline: none;
}

.players-grid-section__search-input::placeholder {
  color: #666666;
}

.players-grid-section__stats {
  background: rgba(26, 26, 26, 0.6);
  padding: 10px 20px;
  border-radius: 4px;
  border-left: 3px solid #FFD700;
  display: inline-flex;
  align-items: center;
}

.players-grid-section__status-indicator {
  width: 10px;
  height: 10px;
  background-color: #00FF00;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 8px #00FF00;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.players-grid-section__stats-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #FFD700;
  letter-spacing: 1px;
}

.players-grid-section__card {
  position: relative;
  height: 100%;
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.players-grid-section__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.1);
}

.players-grid-section__card-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.players-grid-section__avatar-container {
  position: relative;
  margin-bottom: 1.25rem;
}

.players-grid-section__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
  padding: 3px;
}

.players-grid-section__badge-online {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background: #00FF00;
  border: 3px solid #121212;
  border-radius: 50%;
}

.players-grid-section__player-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.players-grid-section__player-rank {
  color: #FFD700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.players-grid-section__meta {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.players-grid-section__level {
  color: #B0B0B0;
  font-weight: 600;
  font-size: 0.9rem;
}

.players-grid-section__location {
  color: #666666;
  font-size: 0.8rem;
  font-style: italic;
}

@media (max-width: 991px) {
  .players-grid-section__search-wrapper {
    margin-left: 0;
    max-width: 100%;
  }
  .players-grid-section__title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .players-grid-section__title {
    font-size: 1.5rem;
  }
  .players-grid-section__subtitle {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: daily-quests ===== */
.quests-section { padding: 80px 0; background-color: #050505; position: relative; overflow: hidden; } .quests-section .quests-title { font-family: 'Orbitron', sans-serif; color: #FFD700; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); } .quests-section .quests-subtitle { font-family: 'Inter', sans-serif; color: #B0B0B0; font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; } .quests-section .quests-divider { width: 100px; height: 3px; background: linear-gradient(90deg, transparent, #FFD700, transparent); margin: 0 auto 40px; } .quests-section .quest-scroll-card { position: relative; height: 100%; min-height: 380px; padding: 2px; background: linear-gradient(135deg, #FFD700 0%, #CD7F32 100%); transition: transform 0.3s ease; } .quests-section .quest-scroll-card:hover { transform: translateY(-5px); } .quests-section .quest-scroll-inner { height: 100%; background-color: #121212; padding: 30px; display: flex; flex-direction: column; position: relative; } .quests-section .quest-icon { width: 50px; height: 50px; background: rgba(255, 215, 0, 0.1); border: 1px solid #FFD700; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .quests-section .quest-icon i { font-size: 1.5rem; color: #FFD700; } .quests-section .quest-name { font-family: 'Orbitron', sans-serif; color: #FFFFFF; font-size: 1.25rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; } .quests-section .quest-desc { font-family: 'Inter', sans-serif; color: #B0B0B0; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; } .quests-section .quest-progress-info { display: flex; justify-content: space-between; font-family: 'Orbitron', sans-serif; font-size: 0.8rem; color: #FFD700; margin-bottom: 10px; } .quests-section .quest-progress-bar { height: 6px; background-color: #1A1A1A; overflow: hidden; margin-bottom: 20px; } .quests-section .quest-progress-fill { height: 100%; background: linear-gradient(90deg, #FFD700, #CD7F32); transition: width 0.5s ease-in-out; } .quests-section .quest-reward { background: rgba(255, 215, 0, 0.05); color: #FFD700; padding: 10px; border-left: 3px solid #FFD700; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* ===== PAGE: guide ===== */
.guide-section { background-color: #050505; color: #FFFFFF; font-family: 'Inter', sans-serif; }.guide-section .guide-title { font-family: 'Orbitron', sans-serif; font-weight: 900; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }.guide-section .guide-card { background: #121212; border: 1px solid rgba(255, 215, 0, 0.2); border-radius: 4px; position: relative; overflow: hidden; }.guide-section .guide-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #FFD700, transparent); }.guide-section .guide-text { color: #B0B0B0; }.guide-section .section-divider-title { font-family: 'Orbitron', sans-serif; color: #FFFFFF; font-size: 1.5rem; border-left: 4px solid #FFD700; padding-left: 15px; }.guide-section .guide-step-card { background: #1A1A1A; border: 1px solid rgba(255, 215, 0, 0.1); transition: all 0.3s ease; }.guide-section .guide-step-card:hover { transform: translateY(-5px); border-color: #FFD700; background: #222222; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }.guide-section .step-icon { width: 60px; height: 60px; background: #6A0DAD; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #FFFFFF; box-shadow: 0 0 15px rgba(106, 13, 173, 0.5); }.guide-section .nav-pills .nav-link { color: #FFFFFF; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; margin: 0 10px; border: 1px solid rgba(255,215,0,0.2); border-radius: 0; padding: 10px 25px; transition: 0.3s; }.guide-section .nav-pills .nav-link.active { background-color: #FFD700; color: #0A0A0A; border-color: #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }.guide-section .tab-content { background: #121212; border: 1px solid rgba(255, 215, 0, 0.2); }.guide-section .guide-list i { color: #FFD700; }.guide-section .badge-item { display: flex; flex-direction: column; align-items: center; background: #1A1A1A; padding: 15px; border: 1px solid #6A0DAD; min-width: 100px; }.guide-section .badge-item i { font-size: 2rem; color: #FFD700; margin-bottom: 5px; }.guide-section .btn-gold { background-color: #FFD700; color: #0A0A0A; font-family: 'Orbitron', sans-serif; font-weight: 700; border: none; padding: 12px 30px; border-radius: 0; transition: 0.3s; }.guide-section .btn-gold:hover { background-color: #FFFFFF; transform: scale(1.05); }.guide-section .accordion-button { background-color: #1A1A1A; color: #FFFFFF; font-family: 'Orbitron', sans-serif; border: 1px solid rgba(255, 215, 0, 0.1); }.guide-section .accordion-button:not(.collapsed) { background-color: #1A1A1A; color: #FFD700; border-bottom: 1px solid #FFD700; box-shadow: none; }.guide-section .accordion-body { background-color: #121212; color: #B0B0B0; border: 1px solid rgba(255, 215, 0, 0.1); border-top: 0; }.guide-section img { border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.8); }

/* ===== PAGE: contacts ===== */
.contacts-page-wrap { background-color: #050505; color: #FFFFFF; font-family: 'Inter', sans-serif; overflow: hidden; } .contacts-page-wrap .contacts-main-title { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 2.5rem; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; } .contacts-page-wrap .contacts-subtitle { font-size: 1.1rem; color: #B0B0B0; max-width: 700px; margin: 0 auto; } .contacts-page-wrap .title-divider { width: 80px; height: 4px; background: linear-gradient(90deg, transparent, #FFD700, transparent); margin-top: 20px; } .contacts-page-wrap .contact-card { background: #121212; border: 1px solid rgba(255, 215, 0, 0.2); padding: 40px 25px; position: relative; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border-radius: 4px; } .contacts-page-wrap .contact-card:hover { transform: translateY(-10px); border-color: #FFD700; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15); } .contacts-page-wrap .contact-icon-wrapper { font-size: 3rem; color: #FFD700; line-height: 1; transition: transform 0.3s ease; } .contacts-page-wrap .contact-card:hover .contact-icon-wrapper { transform: scale(1.1); } .contacts-page-wrap .contact-label { font-family: 'Orbitron', sans-serif; font-size: 1.25rem; font-weight: 700; color: #FFD700; margin-bottom: 15px; text-transform: uppercase; } .contacts-page-wrap .contact-value { color: #FFFFFF; font-size: 1rem; line-height: 1.6; margin-bottom: 0; } .contacts-page-wrap .card-decoration { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #FFD700; transition: width 0.3s ease; } .contacts-page-wrap .contact-card:hover .card-decoration { width: 100%; } .contacts-page-wrap .map-container-outer { padding: 10px; background: #1A1A1A; border: 1px solid rgba(255, 215, 0, 0.1); position: relative; border-radius: 4px; } .contacts-page-wrap .map-glow-border { border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 2px; overflow: hidden; box-shadow: 0 0 20px rgba(255, 215, 0, 0.05); } .contacts-page-wrap .map-glow-border iframe { display: block; filter: grayscale(0.5) contrast(1.1) invert(0.9) hue-rotate(180deg); } @media (max-width: 768px) { .contacts-page-wrap .contacts-main-title { font-size: 1.8rem; } .contacts-page-wrap .contacts-subtitle { font-size: 0.95rem; } .contacts-page-wrap .contact-card { padding: 30px 20px; } }

/* ===== PAGE: privacy ===== */
.privacy-content { background-color: #050505; min-height: 60vh; font-family: 'Inter', sans-serif; }.privacy-card { background-color: #121212; border: 1px solid rgba(255, 215, 0, 0.2); border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); position: relative; overflow: hidden; }.privacy-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #FFD700, transparent); }.privacy-title { font-family: 'Orbitron', sans-serif; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; border-bottom: 2px solid #FFD700; display: inline-block; padding-bottom: 10px; }.privacy-intro { color: #B0B0B0; font-size: 1.1rem; line-height: 1.6; }.privacy-section h3 { font-family: 'Orbitron', sans-serif; color: #FFD700; font-size: 1.5rem; margin-bottom: 1.5rem; display: flex; align-items: center; }.privacy-section p { color: #B0B0B0; line-height: 1.8; margin-bottom: 1rem; }.privacy-section ul { color: #B0B0B0; list-style: none; padding-left: 0; }.privacy-section ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }.privacy-section ul li::before { content: '→'; position: absolute; left: 0; color: #FFD700; }.text-gold { color: #FFD700; text-decoration: none; transition: color 0.3s ease; }.text-gold:hover { color: #FFFFFF; text-decoration: underline; }.update-date { color: #666666; font-size: 0.875rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }@media (max-width: 768px) { .privacy-title { font-size: 1.5rem; } .privacy-section h3 { font-size: 1.2rem; } }

/* ===== PAGE: terms ===== */
.terms-content {
  background-color: #050505;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
}
.terms-content .terms-card {
  background: #121212;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.terms-content .terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}
.terms-content .terms-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.terms-content .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.terms-content .text-gold {
  color: #FFD700 !important;
}
.terms-content p {
  line-height: 1.8;
  color: #B0B0B0;
  font-size: 1rem;
}
.terms-content .custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.terms-content .custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #B0B0B0;
}
.terms-content .custom-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 0.8rem;
  top: 4px;
}
@media (max-width: 768px) {
  .terms-content .terms-title {
    font-size: 1.5rem;
  }
  .terms-content .section-title {
    font-size: 1.1rem;
  }
  .terms-content .terms-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content {
  background-color: #050505;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.disclaimer-content__wrapper {
  background-color: #121212;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.disclaimer-content__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}
.disclaimer-content__title {
  font-family: 'Orbitron', sans-serif;
  color: #FFD700;
  font-weight: 900;
  letter-spacing: 2px;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
}
.disclaimer-content__subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.disclaimer-content__heading {
  font-family: 'Orbitron', sans-serif;
  color: #FFD700;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.disclaimer-content__heading i {
  color: #CD7F32;
}
.disclaimer-content__text {
  line-height: 1.8;
  font-size: 1rem;
}
.disclaimer-content__contact {
  background-color: #1A1A1A;
  border: 1px dashed rgba(255, 215, 0, 0.3);
  border-radius: 4px;
}
.disclaimer-content__sub-heading {
  font-family: 'Orbitron', sans-serif;
  color: #FFFFFF;
}
.disclaimer-content__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A0A0A;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.disclaimer-content__btn:hover {
  background-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .disclaimer-content__title {
    font-size: 1.5rem;
  }
  .disclaimer-content__heading {
    font-size: 1.1rem;
  }
  .disclaimer-content__wrapper {
    padding: 20px !important;
  }
}

.main-comment-wrapper {
    background-color: #121212;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid #FFD700;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.main-comment-wrapper:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #CD7F32;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.comment-username {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.comment-date {
    color: #666666;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

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

.text-gold {
    color: #FFD700;
}

.btn-action {
    background: transparent;
    border: none;
    color: #666666;
    font-size: 0.875rem;
    transition: color 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.reply-comment-wrapper {
    background-color: #1A1A1A;
    border-bottom: 1px solid rgba(106, 13, 173, 0.3);
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #6A0DAD;
    opacity: 0.5;
}

.reply-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 1px solid #6A0DAD;
}

.reply-username {
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.badge-mod {
    background: #6A0DAD;
    color: #FFFFFF;
    font-size: 0.65rem;
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}


/* ===== PAGE TEMPLATE: games-list ===== */
.main-detail-content {
    background-color: #050505;
}

.game-iframe-section {
    background-color: #0A0A0A;
    border-bottom: 2px solid #FFD700;
}

.iframe-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
    background: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.game-iframe {
    width: 100%;
    height: 100%;
}

.is-fullscreen .iframe-wrapper {
    max-width: 100%;
    height: 100vh;
}

.btn-fullscreen,
.btn-exit-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 215, 0, 0.8);
    color: #0A0A0A;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    z-index: 10;
    transition: scale 0.3s ease;
}

.btn-fullscreen:hover,
.btn-exit-fullscreen:hover {
    scale: 1.1;
    background: #FFD700;
}

.is-fullscreen .btn-exit-fullscreen {
    bottom: 40px;
    right: 40px;
}

.detail-page-title {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gold {
    color: #FFD700 !important;
}

.rich-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #B0B0B0;
}

.sidebar-card {
    background: #121212;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: border-color 0.3s ease;
}

.sidebar-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.comment-form-container {
    background: #1A1A1A;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.comment-form-container .form-control {
    background: #252525;
    border: 1px solid #333;
    color: #fff;
}

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

.comment-form-container .form-control,
.comment-form-container .form-control:focus {
    color: #fff !important;
}

.comment-form-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.main-comment-wrapper {
    background: rgba(255, 215, 0, 0.03);
    border-left: 3px solid #FFD700;
}

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

.comment-username {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #FFD700;
}

.comment-date {
    font-size: 0.8rem;
    color: #666;
}

.btn-action {
    background: transparent;
    border: none;
    color: #B0B0B0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 0;
}

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

.smaller {
    font-size: 0.75rem;
}

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

    .detail-page-title {
        font-size: 1.5rem;
    }

    .comments-section {
        padding-left: 10px;
        padding-right: 10px;
    }
}