:root {
    --bg-main: #0F172A;
    --bg-card: #1E293B;
    --primary-neon: #6366F1;
    --secondary-neon: #06B6D4;
    --success-neon: #22C55E;
    --warning-neon: #F59E0B;
    --danger-neon: #EF4444;
    --text-light-primary: #F8FAFC;
    --text-light-secondary: #94A3B8;
    --text-dark-primary: #0F172A;
    --text-dark-secondary: #1E293B;
    --border-color: #1E293B;
    --glow-primary: rgba(99, 102, 241, 0.4);
    --glow-secondary: rgba(6, 182, 212, 0.4);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

.text-muted {
    color: #94A3B8 !important;
}

.fg-body-theme {
    background-color: var(--bg-main);
    color: var(--text-light-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

.fg-main-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== header ===== */
.fg-header-block {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fg-header-block .navbar {
    background-color: #1E293B !important;
    border-bottom: 2px solid #6366F1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.fg-header-block .fg-navbar-scrolled {
    background-color: #0F172A !important;
    border-bottom-color: #06B6D4;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.25);
}

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

.fg-header-block .fg-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #F8FAFC;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-header-block .fg-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94A3B8 !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.fg-header-block .fg-nav-link:hover,
.fg-header-block .fg-nav-link:focus {
    color: #06B6D4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.fg-header-block .fg-dropdown-caret {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.fg-header-block .dropdown-toggle[aria-expanded="true"] .fg-dropdown-caret {
    transform: rotate(180deg);
}

.fg-header-block .fg-dropdown-menu {
    background-color: #1E293B;
    border-radius: 0px;
    border: 1px solid #06B6D4 !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.fg-header-block .fg-dropdown-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.fg-header-block .fg-dropdown-item:hover,
.fg-header-block .fg-dropdown-item:focus {
    background-color: #6366F1;
    color: #F8FAFC;
}

.fg-header-block .fg-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
    background-color: #06B6D4;
}

.fg-header-block .fg-cta-btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A !important;
    background-color: #06B6D4;
    border: 1px solid #06B6D4;
    border-radius: 0px;
    padding: 0.6rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.fg-header-block .fg-cta-btn:hover,
.fg-header-block .fg-cta-btn:focus {
    background-color: #6366F1;
    border-color: #6366F1;
    color: #F8FAFC !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.fg-header-block .fg-toggler-icon {
    color: #F8FAFC;
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .fg-header-block .fg-brand-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0 !important;
    }

    .fg-header-block .fg-nav-list-left {
        padding-right: 80px;
    }

    .fg-header-block .fg-nav-list-right {
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .fg-header-block .navbar-collapse {
        background-color: #1E293B;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid #6366F1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

/* ===== hero ===== */
.fg-hero-section {
    background-color: #0F172A;
    font-family: 'Rajdhani', sans-serif;
}

.fg-hero-container {
    border-radius: 16px;
    border: 1px solid #6366F1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
    background-color: #1E293B;
}

.fg-hero-slides {
    height: 520px;
    width: 100%;
}

.fg-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fg-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.fg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.fg-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.fg-hero-intro {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

.fg-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #F8FAFC;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    letter-spacing: 2px;
}

.fg-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: #06B6D4;
}

.fg-hero-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 600px;
    line-height: 1.6;
}

.fg-btn-primary {
    background-color: #6366F1;
    border: 1px solid #06B6D4;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.fg-btn-primary:hover {
    background-color: #06B6D4;
    border-color: #6366F1;
    color: #0F172A;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

.fg-btn-secondary {
    background-color: transparent;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fg-btn-secondary:hover {
    background-color: rgba(99, 102, 241, 0.15);
    border-color: #06B6D4;
    color: #06B6D4;
    transform: translateY(-2px);
}

.fg-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid #6366F1;
    color: #F8FAFC;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.fg-slider-nav:hover {
    background-color: #6366F1;
    border-color: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-slider-prev {
    left: 20px;
}

.fg-slider-next {
    right: 20px;
}

.fg-hero-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.fg-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(148, 163, 184, 0.4);
    border: 1px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fg-hero-dot.active {
    background-color: #06B6D4;
    border-color: #6366F1;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.8);
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 991.98px) {
    .fg-hero-slides {
        height: 450px;
    }

    .fg-hero-title {
        font-size: 2.75rem;
    }

    .fg-hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .fg-hero-slides {
        height: 380px;
    }

    .fg-hero-title {
        font-size: 18px !important;
    }

    .fg-hero-subtitle {
        font-size: 16px !important;
    }

    .fg-hero-desc {
        font-size: 14px !important;
        line-height: 1.4;
    }

    .fg-slider-nav {
        display: none;
    }

    .fg-btn-primary,
    .fg-btn-secondary {
        font-size: 0.85rem;
        padding: 10px 20px !important;
    }
}

/* ===== games_grid ===== */
.fg-games-grid {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

.fg-games-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(18, 24, 38, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(99, 102, 241, 0.06), rgba(6, 182, 212, 0.02), rgba(99, 102, 241, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.4;
}

.fg-games-grid .console-panel {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid #6366F1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    border-radius: 0px;
    position: relative;
}

.fg-games-grid .console-panel::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #06B6D4;
    border-left: 3px solid #06B6D4;
}

.fg-games-grid .console-panel::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #06B6D4;
    border-right: 3px solid #06B6D4;
}

.fg-games-grid .text-cyan {
    color: #06B6D4 !important;
}

.fg-games-grid .text-indigo {
    color: #6366F1 !important;
}

.fg-games-grid .font-mono {
    font-family: 'Share Tech Mono', monospace;
}

.fg-games-grid .search-wrapper .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #06B6D4;
}

.fg-games-grid .search-wrapper input {
    background: #0F172A;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding-left: 38px;
    border-radius: 0px;
    font-family: 'Share Tech Mono', monospace;
}

.fg-games-grid .search-wrapper input:focus {
    background: #0F172A;
    border-color: #06B6D4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
    color: #F8FAFC;
}

.fg-games-grid .search-wrapper input::placeholder {
    color: #94A3B8;
    opacity: 0.8;
}

.fg-games-grid .btn-filter {
    background: transparent;
    border: 1px solid #6366F1;
    color: #94A3B8;
    padding: 6px 16px;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border-radius: 0px;
}

.fg-games-grid .btn-filter:hover,
.fg-games-grid .btn-filter.active {
    background: #6366F1;
    color: #0F172A;
    border-color: #6366F1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-games-grid .game-card {
    background: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.fg-games-grid .game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

.fg-games-grid .game-card:hover {
    border-color: #06B6D4;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.fg-games-grid .game-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fg-games-grid .game-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    border-bottom: 1px solid #6366F1;
}

.fg-games-grid .game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fg-games-grid .game-card:hover .game-image {
    transform: scale(1.08);
}

.fg-games-grid .game-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.fg-games-grid .game-tag {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid #06B6D4;
    color: #06B6D4;
    font-size: 0.75rem;
    padding: 2px 8px;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
}

.fg-games-grid .game-card-body {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fg-games-grid .game-meta {
    color: #06B6D4;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.fg-games-grid .game-title {
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fg-games-grid .game-desc {
    font-size: 0.9rem;
    color: #94A3B8;
    margin: 0;
    line-height: 1.5;
}

.fg-games-grid .game-card-footer {
    padding: 0 16px 16px 16px;
    z-index: 3;
}

.fg-games-grid .btn-access {
    background: transparent;
    border: 1px solid #06B6D4;
    color: #06B6D4;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    padding: 8px 16px;
    text-align: center;
    display: block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border-radius: 0px;
}

.fg-games-grid .btn-access:hover {
    background: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.fg-games-grid .pagination-wrapper {
    margin-top: 40px;
}

.fg-games-grid .btn-load-more {
    background: #6366F1;
    color: #F8FAFC;
    border: 1px solid #6366F1;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border-radius: 0px;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.fg-games-grid .btn-load-more:hover {
    background: transparent;
    color: #6366F1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.fg-games-grid .btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== comments_section ===== */
.frost-comments-section {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

.frost-comments-section .frost-console-tag {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.frost-comments-section .frost-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.frost-comments-section .frost-subtitle {
    color: #94A3B8;
    font-size: 1rem;
}

.frost-comments-section .frost-filter-group {
    background-color: #1E293B;
    padding: 4px;
    border: 1px solid #6366F1;
}

.frost-comments-section .frost-btn-filter {
    background: transparent;
    border: none;
    color: #94A3B8;
    padding: 6px 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.frost-comments-section .frost-btn-filter:hover {
    color: #06B6D4;
}

.frost-comments-section .frost-btn-filter.active {
    background-color: #6366F1;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.frost-comments-section .frost-comment-card {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.frost-comments-section .frost-comment-card:hover {
    border-color: #06B6D4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
    transform: translateY(-2px);
}

.frost-comments-section .frost-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.frost-comments-section .frost-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366F1;
}

.frost-comments-section .frost-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1E293B;
}

.frost-comments-section .frost-status-dot.online {
    background-color: #22C55E;
    box-shadow: 0 0 8px #22C55E;
}

.frost-comments-section .frost-author-name {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-weight: 700;
    font-size: 1.1rem;
}

.frost-comments-section .frost-badge-tech {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    font-size: 0.75rem;
    font-weight: 600;
}

.frost-comments-section .frost-comment-time {
    font-family: 'Share Tech Mono', monospace;
    color: #94A3B8;
    font-size: 0.85rem;
}

.frost-comments-section .frost-comment-text {
    color: #F8FAFC;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .frost-comments-section .frost-title {
        font-size: 1.4rem;
    }

    .frost-comments-section .frost-avatar-wrapper {
        width: 48px;
        height: 48px;
    }

    .frost-comments-section .frost-avatar {
        width: 48px;
        height: 48px;
    }
}

/* ===== support_faq ===== */
.support-faq-section {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

.support-faq-section .section-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-faq-section .section-subtitle {
    color: #06B6D4;
    font-family: 'Share Tech Mono', monospace;
}

.support-faq-section .system-status-tag {
    font-family: 'Share Tech Mono', monospace;
    color: #6366F1;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.support-faq-section .faq-card {
    background-color: #1E293B;
    border: 1px solid #1E293B;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-faq-section .faq-card.active {
    border-color: #6366F1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.support-faq-section .faq-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.support-faq-section .faq-icon-box {
    color: #06B6D4;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.support-faq-section .faq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #F8FAFC;
    font-weight: 500;
}

.support-faq-section .faq-arrow {
    color: #94A3B8;
    transition: transform 0.3s ease;
}

.support-faq-section .faq-card.active .faq-arrow {
    transform: rotate(180deg);
    color: #6366F1;
}

.support-faq-section .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-faq-section .faq-card.active .faq-body {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.support-faq-section .support-contact-card {
    background-color: #1E293B;
    border: 1px solid #06B6D4;
    padding: 2.25rem;
    position: relative;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-faq-section .diagnostic-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
}

.support-faq-section .status-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
}

.support-faq-section .status-dot.blinking {
    animation: support-blink 1.5s infinite;
}

@keyframes support-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.support-faq-section .diagnostic-title {
    color: #06B6D4;
    letter-spacing: 1px;
}

.support-faq-section .support-card-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-weight: 700;
}

.support-faq-section .support-card-text {
    color: #94A3B8;
    line-height: 1.6;
}

.support-faq-section .email-action-box {
    background-color: #0F172A;
    border: 1px dashed #6366F1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-faq-section .email-label {
    font-family: 'Share Tech Mono', monospace;
    color: #94A3B8;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.support-faq-section .email-link-btn {
    color: #F8FAFC;
    background-color: #6366F1;
    border: none;
    padding: 0.75rem 1.25rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.support-faq-section .email-link-btn:hover {
    background-color: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.support-faq-section .text-muted-custom {
    color: #94A3B8;
    font-size: 0.85rem;
    font-family: 'Share Tech Mono', monospace;
}

/* ===== personal_records ===== */
.personal-records-section {
    background-color: #0F172A;
    font-family: 'Rajdhani', sans-serif;
}

.personal-records-section .monospace-font {
    font-family: 'Share Tech Mono', monospace;
}

.personal-records-section .border-indigo {
    border: 1px solid #6366F1;
    background: rgba(30, 41, 59, 0.4);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.personal-records-section .hud-header {
    border-radius: 4px;
}

.personal-records-section .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #F8FAFC;
}

.personal-records-section .section-subtitle {
    font-size: 0.95rem;
    color: #94A3B8;
}

.personal-records-section .search-box-container {
    position: relative;
    min-width: 200px;
}

.personal-records-section .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1.1rem;
}

.personal-records-section .search-input {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding-left: 38px;
    height: 42px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.personal-records-section .search-input:focus {
    background-color: #1E293B;
    border-color: #06B6D4;
    color: #F8FAFC;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.personal-records-section .search-input::placeholder {
    color: #94A3B8;
    opacity: 0.8;
}

.personal-records-section .tab-btn {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    color: #94A3B8;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.personal-records-section .tab-btn:hover {
    border-color: #06B6D4;
    color: #F8FAFC;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.25);
}

.personal-records-section .tab-btn.active {
    background-color: #6366F1;
    border-color: #6366F1;
    color: #0F172A;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.personal-records-section .record-card {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.personal-records-section .record-card:hover {
    transform: translateY(-4px);
    border-color: #06B6D4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.personal-records-section .card-image-link {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background-color: #0F172A;
}

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

.personal-records-section .record-card:hover .card-img-top {
    transform: scale(1.05);
}

.personal-records-section .scanline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

.personal-records-section .card-meta {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.personal-records-section .card-title-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.personal-records-section .card-title-text a {
    transition: color 0.3s ease;
}

.personal-records-section .card-title-text a:hover {
    color: #06B6D4 !important;
}

.personal-records-section .progress-bar-track {
    height: 8px;
    background-color: #0F172A;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.personal-records-section .progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366F1, #06B6D4);
    transition: width 0.5s ease;
}

.personal-records-section .progress-label {
    font-size: 0.75rem;
}

.personal-records-section .progress-value {
    font-size: 0.8rem;
    font-weight: 700;
}

.personal-records-section .text-light-primary {
    color: #F8FAFC !important;
}

.personal-records-section .text-light-secondary {
    color: #94A3B8 !important;
}

.personal-records-section .text-cyan {
    color: #06B6D4 !important;
}

@media (max-width: 767.98px) {
    .personal-records-section .section-title {
        font-size: 1.4rem;
    }

    .personal-records-section .search-box-container {
        width: 100%;
    }
}

/* ===== footer ===== */
.frost-garage-footer {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-top: 2px solid #6366F1;
    position: relative;
}

.frost-garage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    box-shadow: 0 0 10px #06B6D4;
}

.frost-garage-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    border-left: 3px solid #06B6D4;
    padding-left: 10px;
}

.frost-garage-footer .footer-desc {
    line-height: 1.6;
    color: #94A3B8;
}

.frost-garage-footer .footer-links li {
    margin-bottom: 8px;
}

.frost-garage-footer .footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.frost-garage-footer .footer-links a i {
    font-size: 0.8rem;
    margin-right: 5px;
    color: #6366F1;
    transition: transform 0.3s ease;
}

.frost-garage-footer .footer-links a:hover {
    color: #06B6D4;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
}

.frost-garage-footer .footer-links a:hover i {
    transform: translateX(3px);
    color: #06B6D4;
}

.frost-garage-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-contact a:hover {
    color: #06B6D4;
}

.frost-garage-footer .text-cyan {
    color: #06B6D4 !important;
}

.frost-garage-footer .map-container {
    border: 1px solid #1E293B;
    padding: 5px;
    background-color: #1E293B;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.frost-garage-footer .map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.frost-garage-footer .footer-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
}

.frost-garage-footer .copyright-text {
    font-size: 0.875rem;
    color: #94A3B8;
}

.frost-garage-footer .footer-legal-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-legal-links a:hover {
    color: #6366F1;
}

@media (max-width: 768px) {
    .frost-garage-footer .footer-title {
        font-size: 1rem;
    }

    .frost-garage-footer {
        text-align: left;
    }
}

.fg-header-block {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fg-header-block .navbar {
    background-color: #1E293B !important;
    border-bottom: 2px solid #6366F1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.fg-header-block .fg-navbar-scrolled {
    background-color: #0F172A !important;
    border-bottom-color: #06B6D4;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.25);
}

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

.fg-header-block .fg-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #F8FAFC;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-header-block .fg-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94A3B8 !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.fg-header-block .fg-nav-link:hover,
.fg-header-block .fg-nav-link:focus {
    color: #06B6D4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.fg-header-block .fg-dropdown-caret {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.fg-header-block .dropdown-toggle[aria-expanded="true"] .fg-dropdown-caret {
    transform: rotate(180deg);
}

.fg-header-block .fg-dropdown-menu {
    background-color: #1E293B;
    border-radius: 0px;
    border: 1px solid #06B6D4 !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.fg-header-block .fg-dropdown-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.fg-header-block .fg-dropdown-item:hover,
.fg-header-block .fg-dropdown-item:focus {
    background-color: #6366F1;
    color: #F8FAFC;
}

.fg-header-block .fg-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
    background-color: #06B6D4;
}

.fg-header-block .fg-cta-btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A !important;
    background-color: #06B6D4;
    border: 1px solid #06B6D4;
    border-radius: 0px;
    padding: 0.6rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.fg-header-block .fg-cta-btn:hover,
.fg-header-block .fg-cta-btn:focus {
    background-color: #6366F1;
    border-color: #6366F1;
    color: #F8FAFC !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.fg-header-block .fg-toggler-icon {
    color: #F8FAFC;
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .fg-header-block .fg-brand-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0 !important;
    }

    .fg-header-block .fg-nav-list-left {
        padding-right: 80px;
    }

    .fg-header-block .fg-nav-list-right {
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .fg-header-block .navbar-collapse {
        background-color: #1E293B;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid #6366F1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

.fg-hero-section {
    background-color: #0F172A;
    font-family: 'Rajdhani', sans-serif;
}

.fg-hero-container {
    border-radius: 16px;
    border: 1px solid #6366F1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
    background-color: #1E293B;
}

.fg-hero-slides {
    height: 380px;
    width: 100%;
}

.fg-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fg-hero-slide.slide-bg-1 {
    background-image: url('../media/assets/pics/frost-garage-teenager-family-games.png');
}

.fg-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.fg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.fg-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.fg-hero-intro {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

.fg-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #F8FAFC;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    letter-spacing: 2px;
}

.fg-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: #06B6D4;
}

.fg-hero-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .fg-hero-slides {
        height: 350px;
    }

    .fg-hero-title {
        font-size: 2.75rem;
    }

    .fg-hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .fg-hero-slides {
        height: 300px;
    }

    .fg-hero-title {
        font-size: 18px !important;
    }

    .fg-hero-subtitle {
        font-size: 16px !important;
    }

    .fg-hero-desc {
        font-size: 14px !important;
        line-height: 1.4;
    }
}

.fg-tournaments-section {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    padding: 60px 0;
}

.fg-tournaments-section .section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #F8FAFC;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fg-tournaments-section .section-subtitle {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.fg-tournaments-section .title-line {
    width: 80px;
    height: 3px;
    background-color: #06B6D4;
}

.fg-tournaments-section .search-filter-wrapper {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.fg-tournaments-section .search-input-group {
    position: relative;
}

.fg-tournaments-section .search-input {
    background-color: #0F172A;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding: 12px 20px 12px 45px;
    border-radius: 4px;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fg-tournaments-section .search-input:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.fg-tournaments-section .search-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #06B6D4;
    font-size: 1.2rem;
}

.fg-tournaments-section .search-input::placeholder {
    color: #94A3B8;
    opacity: 0.7;
}

.fg-tournaments-section .filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fg-tournaments-section .filter-btn {
    background-color: #0F172A;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fg-tournaments-section .filter-btn:hover {
    background-color: #6366F1;
    border-color: #06B6D4;
    color: #F8FAFC;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.fg-tournaments-section .filter-btn.active {
    background-color: #06B6D4;
    border-color: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.fg-tournaments-section .no-results-message {
    display: none;
}

.fg-tournaments-section .warning-icon {
    font-size: 3rem;
}

.fg-tournaments-section .tournament-card {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fg-tournaments-section .tournament-card:hover {
    transform: translateY(-5px);
    border-color: #06B6D4;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2);
}

.fg-tournaments-section .card-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.fg-tournaments-section .tournament-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.fg-tournaments-section .status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0F172A;
    border: 1px solid #06B6D4;
    color: #06B6D4;
    padding: 4px 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    z-index: 2;
    text-transform: uppercase;
}

.fg-tournaments-section .status-badge.ended {
    border-color: #EF4444;
    color: #EF4444;
}

.fg-tournaments-section .card-body-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fg-tournaments-section .card-meta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: #06B6D4;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fg-tournaments-section .card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #F8FAFC;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fg-tournaments-section .card-desc {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fg-tournaments-section .fg-card-btn {
    background-color: transparent;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: all 0.3s ease;
}

.fg-tournaments-section .fg-card-btn:hover {
    background-color: #6366F1;
    border-color: #06B6D4;
    color: #F8FAFC;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.fg-tournaments-section .schedule-wrapper {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 8px;
    padding: 25px;
    margin-top: 50px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.fg-tournaments-section .table-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #F8FAFC;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #6366F1;
    padding-bottom: 15px;
}

.fg-tournaments-section .table-responsive {
    border: 1px solid #1E293B;
}

.fg-tournaments-section .fg-table {
    width: 100%;
    border-collapse: collapse;
    color: #94A3B8;
    background-color: #0F172A;
}

.fg-tournaments-section .fg-table th {
    background-color: #1E293B;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #6366F1;
}

.fg-tournaments-section .fg-table td {
    padding: 15px;
    border-bottom: 1px solid #1E293B;
    vertical-align: middle;
}

.fg-tournaments-section .fg-table tr:hover td {
    background-color: rgba(99, 102, 241, 0.05);
}

.fg-tournaments-section .mono-date {
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
}

.fg-tournaments-section .desc-subtext {
    font-size: 0.9rem;
}

.fg-tournaments-section .status-ended-text {
    font-family: 'Share Tech Mono', monospace;
    color: #EF4444;
}

.fg-tournaments-section .status-upcoming-text {
    font-family: 'Share Tech Mono', monospace;
    color: #22C55E;
}

.fg-tournaments-section .table-link {
    color: #06B6D4;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.fg-tournaments-section .table-link:hover {
    color: #6366F1;
    text-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
}

@media (max-width: 767.98px) {
    .fg-tournaments-section .section-title {
        font-size: 16px !important;
    }

    .fg-tournaments-section .card-title {
        font-size: 14px !important;
    }

    .fg-tournaments-section .table-title {
        font-size: 14px !important;
    }
}

.frost-garage-footer {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-top: 2px solid #6366F1;
    position: relative;
}

.frost-garage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    box-shadow: 0 0 10px #06B6D4;
}

.frost-garage-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    border-left: 3px solid #06B6D4;
    padding-left: 10px;
}

.frost-garage-footer .footer-desc {
    line-height: 1.6;
    color: #94A3B8;
}

.frost-garage-footer .footer-links li {
    margin-bottom: 8px;
}

.frost-garage-footer .footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.frost-garage-footer .footer-links a i {
    font-size: 0.8rem;
    margin-right: 5px;
    color: #6366F1;
    transition: transform 0.3s ease;
}

.frost-garage-footer .footer-links a:hover {
    color: #06B6D4;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
}

.frost-garage-footer .footer-links a:hover i {
    transform: translateX(3px);
    color: #06B6D4;
}

.frost-garage-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-contact a:hover {
    color: #06B6D4;
}

.frost-garage-footer .text-cyan {
    color: #06B6D4 !important;
}

.frost-garage-footer .map-container {
    border: 1px solid #1E293B;
    padding: 5px;
    background-color: #1E293B;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.frost-garage-footer .map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.frost-garage-footer .footer-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
}

.frost-garage-footer .copyright-text {
    font-size: 0.875rem;
    color: #94A3B8;
}

.frost-garage-footer .footer-legal-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-legal-links a:hover {
    color: #6366F1;
}

@media (max-width: 768px) {
    .frost-garage-footer .footer-title {
        font-size: 1rem;
    }

    .frost-garage-footer {
        text-align: left;
    }
}


/* ===== PAGE: about ===== */
.frost-about {
  background-color: #0F172A;
  color: #94A3B8;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
}

.frost-about .text-monospace {
  font-family: 'Share Tech Mono', monospace;
}

.frost-about .frost-status-indicator {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  color: #06B6D4;
  font-size: 0.875rem;
  border: 1px solid #06B6D4;
  padding: 2px 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.frost-about .frost-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #F8FAFC;
  font-size: 2.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.frost-about .frost-section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #F8FAFC;
  font-size: 1.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.frost-about .frost-text-lead {
  font-size: 1.15rem;
  line-height: 1.6;
}

.frost-about .frost-text {
  font-size: 1rem;
  line-height: 1.6;
}

.frost-about .frost-btn-primary {
  background-color: #6366F1;
  color: #F8FAFC;
  border: 1px solid #6366F1;
  font-family: 'Share Tech Mono', monospace;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.frost-about .frost-btn-primary:hover,
.frost-about .frost-btn-primary.active {
  background-color: transparent;
  color: #6366F1;
  border-color: #6366F1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.frost-about .frost-btn-secondary {
  background-color: transparent;
  color: #06B6D4;
  border: 1px solid #06B6D4;
  font-family: 'Share Tech Mono', monospace;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.frost-about .frost-btn-secondary:hover,
.frost-about .frost-btn-secondary.active {
  background-color: #06B6D4;
  color: #0F172A;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.frost-about .frost-image-container {
  border: 1px solid #6366F1;
  padding: 8px;
  background-color: #1E293B;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.2);
}

.frost-about .frost-about-img {
  object-fit: cover;
  height: 380px;
  filter: brightness(0.9) contrast(1.1);
}

.frost-about .frost-corner-decor {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #06B6D4;
  border-style: solid;
  z-index: 2;
}
.frost-about .frost-corner-decor.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.frost-about .frost-corner-decor.tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.frost-about .frost-corner-decor.bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.frost-about .frost-corner-decor.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.frost-about .frost-scanline {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.06),
    rgba(0, 255, 0, 0.02),
    rgba(0, 0, 255, 0.06)
  );
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 1;
}

.frost-about .frost-terminal {
  background-color: #0B0F19;
  border: 1px solid #1E293B;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.frost-about .frost-terminal-header {
  background-color: #121824;
  border-bottom: 1px solid #1E293B;
}

.frost-about .terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.frost-about .terminal-dot.red { background-color: #EF4444; }
.frost-about .terminal-dot.yellow { background-color: #F59E0B; }
.frost-about .terminal-dot.green { background-color: #22C55E; }

.frost-about .terminal-title {
  font-size: 0.8rem;
}

.frost-about .text-cyan {
  color: #06B6D4;
}

.frost-about .text-indigo {
  color: #6366F1;
}

.frost-about .frost-card {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  transition: all 0.3s ease;
}

.frost-about .frost-card:hover {
  border-color: #6366F1;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.frost-about .card-icon-wrapper {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #151F32;
}

.frost-about .frost-card .card-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.frost-about .frost-card .card-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.frost-about .frost-metrics-panel {
  background: linear-gradient(135deg, #151F32 0%, #0F172A 100%);
  border: 1px solid #1E293B;
  position: relative;
}

.frost-about .frost-metrics-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.frost-about .frost-progress-bar-container {
  width: 100%;
  height: 10px;
  background-color: #0B0F19;
  border: 1px solid #1E293B;
  padding: 1px;
}

.frost-about .frost-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366F1, #06B6D4);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
  .frost-about .frost-title {
    font-size: 1.8rem;
  }
  .frost-about .frost-about-img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .frost-about .frost-title {
    font-size: 1.5rem;
  }
  .frost-about .frost-section-title {
    font-size: 1.35rem;
  }
  .frost-about .frost-text-lead {
    font-size: 1rem;
  }
}

/* ===== PAGE: lobby ===== */
.frost-lobby {
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
  overflow: hidden;
}

.frost-lobby::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98)), 
              repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
}

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

.frost-lobby .frost-status-indicator {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #1E293B;
  padding: 6px 12px;
  border-radius: 0px;
}

.frost-lobby .status-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
}

.frost-lobby .status-pulse {
  animation: pulse-glow 1.5s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 8px 3px rgba(34, 197, 94, 0.4); }
}

.frost-lobby .status-text {
  color: #94A3B8;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.frost-lobby .frost-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #F8FAFC;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.frost-lobby .frost-lead {
  color: #94A3B8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.frost-lobby .max-width-600 {
  max-width: 600px;
}


.frost-lobby .frost-filter-container {
  background: #1E293B;
  border: 1px solid #6366F1;
  padding: 8px;
  border-radius: 0px;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.frost-lobby .frost-filter-btn {
  background: transparent;
  color: #F8FAFC;
  border: 1px solid transparent;
  border-radius: 0px;
  font-family: 'Share Tech Mono', monospace;
  text-transform: uppercase;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.frost-lobby .frost-filter-btn:hover,
.frost-lobby .frost-filter-btn.active {
  background: #6366F1;
  color: #0F172A;
  border-color: #6366F1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}


.frost-lobby .frost-card {
  background-color: #1E293B;
  border: 1px solid #6366F1;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: scale(1);
}

.frost-lobby .frost-card:hover {
  border-color: #06B6D4;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

.frost-lobby .frost-card-img-wrapper {
  height: 200px;
  overflow: hidden;
  border-bottom: 2px solid #6366F1;
  background: #0F172A;
}

.frost-lobby .frost-card-img-wrapper img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.frost-lobby .frost-card:hover .frost-card-img-wrapper img {
  transform: scale(1.05);
}

.frost-lobby .frost-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 0px;
  letter-spacing: 0.1rem;
}

.frost-lobby .bg-primary-neon {
  background-color: #6366F1;
  color: #0F172A;
}

.frost-lobby .bg-secondary-neon {
  background-color: #06B6D4;
  color: #0F172A;
}

.frost-lobby .bg-warning-neon {
  background-color: #F59E0B;
  color: #0F172A;
}

.frost-lobby .bg-danger-neon {
  background-color: #EF4444;
  color: #F8FAFC;
}

.frost-lobby .frost-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.frost-lobby .frost-card-title a {
  transition: color 0.3s ease;
}

.frost-lobby .frost-card-title a:hover {
  color: #06B6D4 !important;
}

.frost-lobby .frost-card-text {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.frost-lobby .border-secondary-neon-dim {
  border-color: rgba(6, 182, 212, 0.2) !important;
}

.frost-lobby .frost-card-link {
  color: #06B6D4;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.frost-lobby .frost-card-link:hover {
  color: #6366F1;
  text-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
}


.frost-lobby .frost-readout-panel {
  background: rgba(30, 41, 59, 0.7);
  border: 1px dashed #06B6D4;
  border-radius: 0px;
  position: relative;
}

.frost-lobby .frost-readout-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #06B6D4;
}

.frost-lobby .frost-readout-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  color: #F8FAFC;
}

.frost-lobby .text-primary-neon {
  color: #6366F1;
}

.frost-lobby .text-secondary-neon {
  color: #06B6D4;
}

.frost-lobby .text-success-neon {
  color: #22C55E;
}

.frost-lobby .frost-readout-text {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.frost-lobby .frost-btn-glow {
  background: transparent;
  color: #06B6D4;
  border: 1px solid #06B6D4;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.frost-lobby .frost-btn-glow:hover {
  background: #06B6D4;
  color: #0F172A;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}


.frost-lobby .js-lobby-card.hidden {
  display: none !important;
}

/* ===== PAGE: tasks ===== */
.garage-tasks-section {
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
}

.garage-tasks-section::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
  background-size: 100% 4px;
  z-index: 1;
  pointer-events: none;
}

.garage-tasks-section .hud-status {
  font-family: 'Share Tech Mono', monospace;
  color: #06B6D4;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.garage-tasks-section .section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #F8FAFC;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.garage-tasks-section .section-subtitle {
  font-size: 1.1rem;
}

.garage-tasks-section .filter-panel {
  background-color: #1E293B;
  border: 1px solid #1E293B;
}

.garage-tasks-section .search-input-group {
  background-color: #0F172A;
  border: 1px solid #6366F1;
  box-shadow: inset 0 0 10px rgba(99, 102, 241, 0.15);
}

.garage-tasks-section .search-input {
  background: transparent;
  border: none;
  color: #F8FAFC;
  font-family: 'Share Tech Mono', monospace;
  padding: 0.75rem 1rem;
}

.garage-tasks-section .search-input:focus {
  outline: none;
  box-shadow: none;
}

.garage-tasks-section .search-input::placeholder {
  color: #94A3B8;
  opacity: 0.7;
}
.garage-tasks-section .search-input:-ms-input-placeholder {
  color: #94A3B8;
}
.garage-tasks-section .search-input::-ms-input-placeholder {
  color: #94A3B8;
}

.garage-tasks-section .filter-btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: transparent;
  color: #94A3B8;
  border: 1px solid #0F172A;
  border-radius: 0;
  padding: 0.65rem 1.25rem;
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
}

.garage-tasks-section .filter-btn:hover,
.garage-tasks-section .filter-btn.active {
  color: #06B6D4;
  border-color: #06B6D4;
  background-color: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.garage-tasks-section .garage-task-card {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  border-radius: 0;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.garage-tasks-section .garage-task-card:hover {
  border-color: #6366F1;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}

.garage-tasks-section .task-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.garage-tasks-section .task-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: #F59E0B;
  background-color: rgba(245, 158, 11, 0.1);
  padding: 0.2rem 0.5rem;
  border: 1px solid #F59E0B;
}

.garage-tasks-section .task-points {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: #06B6D4;
  font-weight: bold;
}

.garage-tasks-section .task-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  color: #F8FAFC;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.garage-tasks-section .task-desc {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.garage-tasks-section .task-progress-wrapper {
  margin-top: auto;
}

.garage-tasks-section .progress-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.garage-tasks-section .progress-value {
  color: #F59E0B;
}

.garage-tasks-section .task-progress-bar {
  height: 12px;
  background-color: #0F172A;
  border: 1px solid #1E293B;
  position: relative;
  display: flex;
  padding: 2px;
}

.garage-tasks-section .progress-segments {
  display: flex;
  width: 100%;
  gap: 3px;
}

.garage-tasks-section .progress-segment {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
}

.garage-tasks-section .info-footer {
  background-color: rgba(99, 102, 241, 0.05);
  border-left: 3px solid #6366F1;
  padding: 1.25rem;
  margin-top: 3rem;
}

.garage-tasks-section .info-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #94A3B8;
}

.garage-tasks-section .no-results {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #EF4444;
  text-align: center;
  padding: 3rem 0;
}

@media (max-width: 767.98px) {
  .garage-tasks-section .section-title {
    font-size: 18px !important;
  }
  .garage-tasks-section .task-title {
    font-size: 14px !important;
  }
  .garage-tasks-section .info-footer h4 {
    font-size: 14px !important;
  }
}

/* ===== PAGE: faq ===== */
.frost-faq-section {
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #1E293B;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.frost-faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08), transparent 60%);
  pointer-events: none;
}

.frost-faq-section .faq-main-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 2px;
  color: #06B6D4;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  margin-bottom: 1rem;
}

.frost-faq-section .faq-subtitle {
  color: #94A3B8;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.frost-faq-section .faq-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.frost-faq-section .faq-search-icon {
  position: absolute;
  left: 15px;
  color: #06B6D4;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.frost-faq-section .js-faq-search {
  background-color: #1E293B;
  border: 1px solid #6366F1;
  border-radius: 0;
  color: #F8FAFC;
  padding: 12px 15px 12px 45px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 5px rgba(99, 102, 241, 0.1);
}

.frost-faq-section .js-faq-search:focus {
  background-color: #1E293B;
  border-color: #06B6D4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
  color: #F8FAFC;
  outline: none;
}

.frost-faq-section .js-faq-search::placeholder {
  color: #64748B;
  opacity: 1;
}

.frost-faq-section .faq-categories {
  margin-top: 1rem;
}

.frost-faq-section .js-faq-tab {
  font-family: 'Share Tech Mono', monospace;
  border-radius: 0;
  border: 1px solid #1E293B;
  background-color: #1E293B;
  color: #94A3B8;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.frost-faq-section .js-faq-tab:hover {
  background-color: rgba(99, 102, 241, 0.1);
  border-color: #6366F1;
  color: #F8FAFC;
}

.frost-faq-section .js-faq-tab.active {
  background-color: #6366F1;
  border-color: #6366F1;
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.frost-faq-section .faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 2rem;
}

.frost-faq-section .faq-item {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  transition: all 0.3s ease;
  position: relative;
}

.frost-faq-section .faq-item:hover {
  border-color: #6366F1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.frost-faq-section .faq-item.active {
  border-color: #06B6D4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
}

.frost-faq-section .faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.frost-faq-section .faq-trigger:focus {
  outline: none;
}

.frost-faq-section .faq-tag {
  color: #06B6D4;
  font-family: 'Share Tech Mono', monospace;
  margin-right: 10px;
  font-size: 0.95rem;
}

.frost-faq-section .faq-icon-indicator {
  color: #94A3B8;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.frost-faq-section .faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
  color: #06B6D4;
}

.frost-faq-section .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(15, 23, 42, 0.4);
}

.frost-faq-section .faq-content-inner {
  padding: 0 20px 20px 20px;
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  padding-top: 15px;
}

.frost-faq-section .faq-no-results p {
  font-family: 'Share Tech Mono', monospace;
}

@media (max-width: 767px) {
  .frost-faq-section .faq-main-title {
    font-size: 1.75rem;
  }
  .frost-faq-section .faq-trigger {
    font-size: 1rem;
    padding: 15px;
  }
  .frost-faq-section .faq-content-inner {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }
}

/* ===== PAGE: fame ===== */
.fame-leaderboard {
  background-color: #0F172A;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
}

.fame-leaderboard h1,
.fame-leaderboard h2,
.fame-leaderboard h3,
.fame-leaderboard h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.fame-panel-header .fame-glitch-text {
  font-family: 'Share Tech Mono', monospace;
  color: #06B6D4;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.fame-panel-header h1 {
  text-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.fame-divider-line {
  height: 2px;
  max-width: 150px;
  background: linear-gradient(90deg, transparent, #6366F1, #06B6D4, transparent);
  margin: 1.5rem auto 0;
}


.fame-podium-card {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fame-podium-card:hover {
  transform: translateY(-5px);
}

.fame-gold {
  border-color: #F59E0B;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}
.fame-gold:hover {
  border-color: #f7b134;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.fame-silver {
  border-color: #94A3B8;
  box-shadow: 0 0 15px rgba(148, 163, 184, 0.15);
}
.fame-silver:hover {
  border-color: #cbd5e1;
  box-shadow: 0 0 25px rgba(148, 163, 184, 0.3);
}

.fame-bronze {
  border-color: #CD7F32;
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.15);
}
.fame-bronze:hover {
  border-color: #df9b5a;
  box-shadow: 0 0 25px rgba(205, 127, 50, 0.3);
}

.fame-avatar-container {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
}

.fame-gold .fame-avatar-container {
  width: 110px;
  height: 110px;
}

.fame-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid transparent;
}

.border-gold {
  border-color: #F59E0B !important;
}
.border-silver {
  border-color: #94A3B8 !important;
}
.border-bronze {
  border-color: #CD7F32 !important;
}

.fame-rank-num {
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
}

.text-gold { color: #F59E0B; }
.text-silver { color: #94A3B8; }
.text-bronze { color: #CD7F32; }

.fame-status-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-uppercase: true;
}

.fame-stats-readout {
  background-color: #0F172A;
  border: 1px dashed #6366F1;
  padding: 0.5rem;
  border-radius: 2px;
}

.fame-stats-readout .fame-score {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F8FAFC;
}

.fame-stats-readout .fame-unit {
  font-size: 0.8rem;
  color: #06B6D4;
  font-family: 'Share Tech Mono', monospace;
}

.fame-progress-bar {
  background-color: #0F172A;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}


.fame-leaderboard-panel {
  background-color: #1E293B;
  border: 1px solid #6366F1;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.fame-table-row {
  background-color: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 2px;
  transition: border-color 0.2s ease;
}

.fame-table-row:hover {
  border-color: #06B6D4;
}

.fame-row-rank {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  color: #06B6D4 !important;
  min-width: 40px;
}

.fame-row-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid #6366F1;
}

.fame-row-avatar.bg-dark {
  background-color: #1E293B !important;
  color: #94A3B8;
  font-size: 1.2rem;
}

.fame-row-score {
  font-size: 1.2rem;
  font-weight: bold;
}

/* ===== PAGE: privacy ===== */
.privacy-block {
  background-color: #0F172A;
  font-family: 'Rajdhani', sans-serif;
  color: #F8FAFC;
}

.privacy-block .privacy-sidebar {
  background-color: #1E293B;
  border: 1px solid #6366F1;
  position: sticky;
  top: 100px;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.privacy-block .status-dot {
  width: 8px;
  height: 8px;
  background-color: #06B6D4;
  border-radius: 50%;
  display: inline-block;
}

.privacy-block .pulsing {
  animation: consoleGlow 1.5s infinite ease-in-out;
}

@keyframes consoleGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.privacy-block .monospace-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.privacy-block .text-secondary-neon {
  color: #06B6D4;
}

.privacy-block .text-success-neon {
  color: #22C55E;
}

.privacy-block .privacy-nav .nav-link {
  color: #94A3B8;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-block .privacy-nav .nav-link:hover {
  color: #06B6D4;
  background-color: rgba(6, 182, 212, 0.05);
  border-left: 3px solid #06B6D4;
}

.privacy-block .privacy-nav .nav-link.active {
  color: #0F172A;
  background-color: #06B6D4;
  border: 1px solid #06B6D4;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.privacy-block .privacy-content-wrapper {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  position: relative;
}

.privacy-block .privacy-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #06B6D4);
}

.privacy-block .system-alert {
  background-color: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 10px 15px;
}

.privacy-block .icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid #06B6D4;
}

.privacy-block .icon-wrapper i {
  font-size: 1.25rem;
}

.privacy-block .section-title-sm {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.privacy-block .custom-bullet-list {
  list-style: none;
  padding-left: 0;
}

.privacy-block .custom-bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.privacy-block .custom-bullet-list li::before {
  content: '>';
  font-family: 'Share Tech Mono', monospace;
  position: absolute;
  left: 0;
  color: #06B6D4;
  font-weight: bold;
}

@media (max-width: 768px) {
  .privacy-block .privacy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  .privacy-block .section-title-sm {
    font-size: 1.15rem;
  }
}

/* ===== PAGE: terms ===== */
.fg-terms-section {
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

.fg-terms-section .font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.fg-terms-section .font-mono {
  font-family: 'Share Tech Mono', monospace;
}

.fg-terms-section .font-rajdhani {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
}


.fg-terms-section .fg-console-panel,
.fg-terms-section .fg-controls-panel,
.fg-terms-section .fg-sticky-nav,
.fg-terms-section .fg-terms-card {
  background-color: #1E293B;
  border-radius: 0px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fg-terms-section .border-cyan {
  border: 1px solid #06B6D4;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.fg-terms-section .border-indigo {
  border: 1px solid #6366F1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.fg-terms-section .fg-console-panel:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.fg-terms-section .fg-terms-card:hover {
  transform: translateY(-2px);
}

.fg-terms-section .fg-terms-card.border-cyan:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.fg-terms-section .fg-terms-card.border-indigo:hover {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}


.fg-terms-section .fg-console-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.fg-terms-section .fg-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(6, 182, 212, 0.1);
  padding: 6px 12px;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.fg-terms-section .fg-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #06B6D4;
  border-radius: 50%;
  animation: fg-pulse 1.5s infinite;
}

@keyframes fg-pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}


.fg-terms-section .fg-search-wrapper {
  position: relative;
}

.fg-terms-section .fg-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #06B6D4;
}

.fg-terms-section .fg-search-wrapper .form-control {
  background-color: #0F172A;
  border: 1px solid #1E293B;
  color: #F8FAFC;
  padding-left: 40px;
  border-radius: 0px;
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.3s ease;
}

.fg-terms-section .fg-search-wrapper .form-control:focus {
  border-color: #06B6D4;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  background-color: #0F172A;
}

.fg-terms-section .fg-search-wrapper .form-control::placeholder {
  color: #94A3B8;
  opacity: 0.7;
}


.fg-terms-section .btn-outline-cyan {
  border: 1px solid #06B6D4;
  color: #06B6D4;
  background-color: transparent;
  border-radius: 0;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.fg-terms-section .btn-outline-cyan:hover, 
.fg-terms-section .btn-outline-cyan.active {
  background-color: #06B6D4;
  color: #0F172A;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}


.fg-terms-section .fg-sticky-nav {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.fg-terms-section .fg-terms-nav .nav-link {
  color: #94A3B8;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  display: block;
}

.fg-terms-section .fg-terms-nav .nav-link:hover,
.fg-terms-section .fg-terms-nav .nav-link.active {
  color: #F8FAFC;
  background-color: rgba(99, 102, 241, 0.1);
  border-left-color: #6366F1;
  padding-left: 16px;
}


.fg-terms-section .bg-indigo {
  background-color: #6366F1 !important;
}


.fg-terms-section .fg-custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.fg-terms-section .fg-custom-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}


.fg-terms-section .text-cyan {
  color: #06B6D4 !important;
}

.fg-terms-section h2, .fg-terms-section h3 {
  letter-spacing: 0.5px;
}

/* ===== PAGE: disclaimer ===== */
.fg-disclaimer {
  background-color: #0F172A;
  font-family: 'Rajdhani', sans-serif;
  color: #94A3B8;
  min-height: 80vh;
}

.fg-disclaimer h2,
.fg-disclaimer h3 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}


.fg-disclaimer .fg-disclaimer-hud {
  background-color: #1E293B;
  border-left: 4px solid #06B6D4;
  border-right: 1px solid #1E293B;
  border-top: 1px solid #1E293B;
  border-bottom: 1px solid #1E293B;
  position: relative;
  overflow: hidden;
}

.fg-disclaimer .fg-disclaimer-hud::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15, 23, 42, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}

.fg-disclaimer .fg-pulse-indicator {
  width: 10px;
  height: 10px;
  background-color: #06B6D4;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #06B6D4;
  animation: fg-indicator-pulse 2s infinite;
}

@keyframes fg-indicator-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 14px #06B6D4;
  }
  100% {
    opacity: 0.4;
  }
}


.fg-disclaimer .fg-control-panel {
  background-color: #1E293B;
  border: 1px solid #6366F1;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
  position: relative;
}

.fg-disclaimer .fg-panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #6366F1;
  padding-bottom: 12px;
}

.fg-disclaimer .fg-search-group {
  border: 1px solid #1E293B;
  background-color: #0F172A;
}

.fg-disclaimer .fg-input-icon {
  background-color: #0F172A;
  border: 1px solid #6366F1;
  color: #6366F1;
  border-radius: 0;
}

.fg-disclaimer .fg-input {
  background-color: #0F172A;
  border: 1px solid #6366F1;
  border-left: none;
  color: #F8FAFC;
  border-radius: 0;
  font-family: 'Share Tech Mono', monospace;
}

.fg-disclaimer .fg-input:focus {
  background-color: #0F172A;
  border-color: #06B6D4;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
  color: #F8FAFC;
}

.fg-disclaimer .fg-input::placeholder {
  color: #475569 !important;
  opacity: 1;
}


.fg-disclaimer .fg-filter-list {
  width: 100%;
}

.fg-disclaimer .fg-btn-filter {
  background-color: #0F172A;
  color: #94A3B8;
  border: 1px solid #1E293B;
  text-align: left;
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.fg-disclaimer .fg-btn-filter:hover {
  color: #06B6D4;
  border-color: #06B6D4;
  background-color: rgba(6, 182, 212, 0.05);
  padding-left: 20px;
}

.fg-disclaimer .fg-btn-filter.active {
  background-color: rgba(99, 102, 241, 0.1);
  color: #F8FAFC;
  border-color: #6366F1;
  border-left: 4px solid #6366F1;
}


.fg-disclaimer .fg-disclaimer-card {
  background-color: #1E293B;
  border: 1px solid #1E293B;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fg-disclaimer .fg-disclaimer-card:hover {
  border-color: #06B6D4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.fg-disclaimer .fg-card-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0F172A;
  border: 1px solid currentColor;
}

.fg-disclaimer .fg-card-heading {
  font-size: 1.25rem;
  font-weight: 700;
}

.fg-disclaimer .fg-card-text {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #94A3B8;
}

.fg-disclaimer .fg-card-text:last-child {
  margin-bottom: 0;
}


.fg-disclaimer .fg-no-results {
  background-color: #1E293B;
  border: 1px dashed #475569;
}


@media (max-width: 991px) {
  .fg-disclaimer .fg-filter-list {
    flex-direction: row !important;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .fg-disclaimer .fg-btn-filter {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fg-disclaimer .fg-filter-wrapper {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .fg-disclaimer h2 {
    font-size: 1.1rem;
  }
  .fg-disclaimer h3 {
    font-size: 1rem;
  }
  .fg-disclaimer .fg-card-text {
    font-size: 0.9rem;
  }
}

.game-comment-box {
    background-color: #1E293B;
    border-radius: 0px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    color: #F8FAFC;
    box-sizing: border-box;
}

.main-comment-card {
    border: 1px solid #6366F1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.game-comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.game-avatar-wrapper {
    flex-shrink: 0;
}

.game-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #F8FAFC;
    border-radius: 0px;
}

.main-avatar {
    background: linear-gradient(135deg, #6366F1, #4f46e5);
    border: 2px solid #6366F1;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.game-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-user-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.game-username {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F8FAFC;
}

.game-user-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #6366F1;
    letter-spacing: 0.5px;
}

.game-meta-time {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #94A3B8;
}

.game-comment-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 16px;
    word-break: break-word;
}

.game-comment-footer {
    display: flex;
    gap: 12px;
}

.game-btn {
    background: transparent;
    border-radius: 0px;
    padding: 6px 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.game-btn-primary {
    border: 1px solid #6366F1;
    color: #6366F1;
}

.game-btn-primary:hover {
    background-color: #6366F1;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.game-btn-secondary {
    border: 1px solid #06B6D4;
    color: #06B6D4;
}

.game-btn-secondary:hover {
    background-color: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.badge-count {
    font-weight: 700;
    margin-left: 2px;
}

.game-comment-box {
    background-color: #1E293B;
    border-radius: 0px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    color: #F8FAFC;
    box-sizing: border-box;
}

.reply-comment-card {
    border: 1px solid #06B6D4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
    margin-left: 40px;
}

.reply-connector-line {
    position: absolute;
    left: -21px;
    top: -20px;
    width: 2px;
    height: calc(100% + 20px);
    border-left: 2px dashed #06B6D4;
    opacity: 0.5;
}

.game-comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.game-avatar-wrapper {
    flex-shrink: 0;
}

.game-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #F8FAFC;
    border-radius: 0px;
}

.reply-avatar {
    background: linear-gradient(135deg, #06B6D4, #0891b2);
    border: 2px solid #06B6D4;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.game-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-user-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.game-username {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F8FAFC;
}

.game-user-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #06B6D4;
    letter-spacing: 0.5px;
}

.game-meta-time {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #94A3B8;
}

.game-comment-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 16px;
    word-break: break-word;
}

.game-comment-footer {
    display: flex;
    gap: 12px;
}

.game-btn {
    background: transparent;
    border-radius: 0px;
    padding: 6px 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.game-btn-secondary {
    border: 1px solid #06B6D4;
    color: #06B6D4;
}

.game-btn-secondary:hover {
    background-color: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.badge-count {
    font-weight: 700;
    margin-left: 2px;
}

@media (max-width: 576px) {
    .reply-comment-card {
        margin-left: 20px;
    }

    .reply-connector-line {
        left: -11px;
    }
}


/* ===== PAGE TEMPLATE: games ===== */
.fg-body-theme {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.fg-header-block {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fg-header-block .navbar {
    background-color: #1E293B !important;
    border-bottom: 2px solid #6366F1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.fg-header-block .fg-navbar-scrolled {
    background-color: #0F172A !important;
    border-bottom-color: #06B6D4;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.25);
}

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

.fg-header-block .fg-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #F8FAFC;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-header-block .fg-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94A3B8 !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.fg-header-block .fg-nav-link:hover,
.fg-header-block .fg-nav-link:focus {
    color: #06B6D4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.fg-header-block .fg-dropdown-caret {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.fg-header-block .dropdown-toggle[aria-expanded="true"] .fg-dropdown-caret {
    transform: rotate(180deg);
}

.fg-header-block .fg-dropdown-menu {
    background-color: #1E293B;
    border-radius: 0px;
    border: 1px solid #06B6D4 !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.fg-header-block .fg-dropdown-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.fg-header-block .fg-dropdown-item:hover,
.fg-header-block .fg-dropdown-item:focus {
    background-color: #6366F1;
    color: #F8FAFC;
}

.fg-header-block .fg-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
    background-color: #06B6D4;
}

.fg-header-block .fg-cta-btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A !important;
    background-color: #06B6D4;
    border: 1px solid #06B6D4;
    border-radius: 0px;
    padding: 0.6rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.fg-header-block .fg-cta-btn:hover,
.fg-header-block .fg-cta-btn:focus {
    background-color: #6366F1;
    border-color: #6366F1;
    color: #F8FAFC !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.fg-header-block .fg-toggler-icon {
    color: #F8FAFC;
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .fg-header-block .fg-brand-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0 !important;
    }

    .fg-header-block .fg-nav-list-left {
        padding-right: 80px;
    }

    .fg-header-block .fg-nav-list-right {
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .fg-header-block .navbar-collapse {
        background-color: #1E293B;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid #6366F1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

.fg-detail-block {
    background-color: #0F172A;
}

.fg-console-hud {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.fg-hud-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22C55E;
    box-shadow: 0 0 8px #22C55E;
    animation: fg-pulse 1.5s infinite;
}

@keyframes fg-pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.fg-hud-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.fg-console-screen-wrapper {
    background: #000;
    border: 2px solid #06B6D4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    overflow: hidden;
    border-radius: 8px;
}

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

.fg-fullscreen-bar {
    background: #1E293B;
    border-top: 1px solid #06B6D4;
}

.fg-fullscreen-action-btn,
.fg-exit-fullscreen-action-btn {
    background: transparent;
    border: 1px solid #06B6D4;
    color: #06B6D4;
    padding: 6px 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fg-fullscreen-action-btn:hover,
.fg-exit-fullscreen-action-btn:hover {
    background: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.fg-console-screen-wrapper.fullscreen-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    border: none !important;
    border-radius: 0 !important;
}

.fg-console-screen-wrapper.fullscreen-mode .fg-game-iframe {
    height: calc(100vh - 50px) !important;
}

.fg-details-card,
.fg-sidebar-card,
.fg-comments-section {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fg-category-badge {
    font-family: 'Share Tech Mono', monospace;
    background-color: rgba(99, 102, 241, 0.15);
    color: #6366F1;
    border: 1px solid #6366F1;
    padding: 4px 12px;
    font-size: 0.85rem;
}

.fg-main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.25rem;
    color: #F8FAFC;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.fg-main-subtitle {
    font-size: 1.25rem;
    color: #06B6D4;
    font-weight: 600;
}

.fg-content-rich-text p {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #94A3B8;
}

.fg-tab-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #94A3B8;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.fg-tab-btn.active {
    color: #06B6D4;
    border-color: #06B6D4;
    background: rgba(6, 182, 212, 0.1);
}

.fg-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fg-info-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #94A3B8;
}

.fg-info-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #06B6D4;
}

.fg-sidebar-title,
.fg-section-title-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F8FAFC;
    border-left: 3px solid #6366F1;
    padding-left: 10px;
    letter-spacing: 1px;
}

.fg-input,
.fg-input-search {
    background-color: #0F172A !important;
    border: 1px solid #6366F1 !important;
    color: #F8FAFC !important;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.fg-input::placeholder,
.fg-input-search::placeholder {
    color: #64748B !important;
}

.fg-input:focus,
.fg-input-search:focus {
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    border-color: #06B6D4 !important;
}

.fg-mini-filter {
    font-family: 'Share Tech Mono', monospace;
    background: transparent;
    border: 1px solid #6366F1;
    color: #94A3B8;
    padding: 4px 12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.fg-mini-filter.active,
.fg-mini-filter:hover {
    background-color: #6366F1;
    color: #F8FAFC;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.fg-participant-item .badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
}

.bg-primary-neon {
    background-color: #6366F1 !important;
    color: #F8FAFC;
}

.bg-secondary-neon {
    background-color: #06B6D4 !important;
}

.game-comment-box {
    position: relative;
    background: #0F172A;
    border: 1px solid #6366F1;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

.reply-comment-card {
    margin-left: 40px;
    border-color: #06B6D4;
}

.reply-connector-line {
    position: absolute;
    left: -20px;
    top: -16px;
    width: 20px;
    height: 50px;
    border-left: 2px solid #06B6D4;
    border-bottom: 2px solid #06B6D4;
}

.game-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-avatar-wrapper {
    flex-shrink: 0;
}

.game-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6366F1;
    color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.reply-avatar {
    background: #06B6D4;
}

.game-user-info {
    display: flex;
    flex-direction: column;
}

.game-username {
    font-weight: 700;
    color: #F8FAFC;
}

.game-user-tag {
    font-size: 0.85rem;
    margin-left: 8px;
    font-family: 'Share Tech Mono', monospace;
}

.text-primary-neon {
    color: #6366F1;
}

.text-secondary-neon {
    color: #06B6D4;
}

.text-success-neon {
    color: #22C55E;
}

.game-meta-time {
    font-size: 0.75rem;
    color: #64748B;
}

.game-comment-body {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.game-comment-footer {
    display: flex;
    gap: 10px;
}

.game-btn {
    background: transparent;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn-primary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #06B6D4;
}

.game-btn-secondary {
    border-color: #06B6D4;
}

.game-btn-secondary:hover {
    background: rgba(6, 182, 212, 0.2);
}

.fg-btn-primary {
    background-color: #6366F1;
    border: 1px solid #06B6D4;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.fg-btn-primary:hover {
    background-color: #06B6D4;
    border-color: #6366F1;
    color: #0F172A;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.frost-garage-footer {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-top: 2px solid #6366F1;
    position: relative;
}

.frost-garage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    box-shadow: 0 0 10px #06B6D4;
}

.frost-garage-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    border-left: 3px solid #06B6D4;
    padding-left: 10px;
}

.frost-garage-footer .footer-desc {
    line-height: 1.6;
    color: #94A3B8;
}

.frost-garage-footer .footer-links li {
    margin-bottom: 8px;
}

.frost-garage-footer .footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.frost-garage-footer .footer-links a i {
    font-size: 0.8rem;
    margin-right: 5px;
    color: #6366F1;
    transition: transform 0.3s ease;
}

.frost-garage-footer .footer-links a:hover {
    color: #06B6D4;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
}

.frost-garage-footer .footer-links a:hover i {
    transform: translateX(3px);
    color: #06B6D4;
}

.frost-garage-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-contact a:hover {
    color: #06B6D4;
}

.frost-garage-footer .text-cyan {
    color: #06B6D4 !important;
}

.frost-garage-footer .map-container {
    border: 1px solid #1E293B;
    padding: 5px;
    background-color: #1E293B;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.frost-garage-footer .map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.frost-garage-footer .footer-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
}

.frost-garage-footer .copyright-text {
    font-size: 0.875rem;
    color: #94A3B8;
}

.frost-garage-footer .footer-legal-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-legal-links a:hover {
    color: #6366F1;
}

@media (max-width: 768px) {
    .fg-game-iframe {
        height: 320px;
    }

    .fg-main-title {
        font-size: 1.75rem;
    }

    .fg-main-subtitle {
        font-size: 1.1rem;
    }

    .reply-comment-card {
        margin-left: 20px;
    }
}

/* ===== hero spacing fix ===== */
.fg-hero-content > .d-flex.justify-content-center.gap-3.flex-wrap {
    margin-bottom: 34px;
}

.fg-hero-dots-container {
    bottom: 6px;
}

@media (max-width: 575.98px) {
    .fg-hero-content > .d-flex.justify-content-center.gap-3.flex-wrap {
        margin-bottom: 46px;
    }

    .fg-hero-dots-container {
        bottom: 20px;
    }
}

/* ===== site-wide fixes ===== */
.fg-header-block .dropdown-toggle::after {
    display: none !important;
}

.fg-header-block .fg-nav-link {
    white-space: nowrap;
}

.fg-header-block .fg-dropdown-menu {
    min-width: 220px;
    z-index: 1100;
}

@media (min-width: 992px) {
    .fg-header-block .fg-nav-list-right .fg-dropdown-menu {
        left: auto !important;
        right: 0 !important;
    }

    .fg-header-block .nav-item.dropdown:hover > .fg-dropdown-menu,
    .fg-header-block .nav-item.dropdown:focus-within > .fg-dropdown-menu {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .fg-header-block .navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
    }

    .fg-header-block .navbar-brand.d-lg-none {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 0.75rem;
    }

    .fg-header-block .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
        padding: 0.35rem 0.45rem;
        line-height: 1;
    }

    .fg-header-block .navbar-collapse {
        flex: 0 0 100%;
        width: 100%;
    }

    .fg-header-block .fg-brand-text {
        font-size: 1.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fg-header-block .fg-nav-list-left,
    .fg-header-block .fg-nav-list-right {
        gap: 0.35rem;
    }

    .fg-header-block .fg-nav-link {
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    }

    .fg-header-block .fg-dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        margin-top: 0 !important;
        background-color: rgba(15, 23, 42, 0.6);
    }

    .fg-header-block .dropdown-menu.show {
        display: block;
    }
}

@media (max-width: 420px) {
    .fg-header-block .fg-brand-text {
        font-size: 1.05rem;
    }

    .fg-header-block .fg-logo-img {
        max-width: 38px;
    }
}

.fg-games-grid .game-card-link,
.fg-games-grid .game-card-body {
    position: relative;
    z-index: 3;
}

.fg-games-grid .game-title {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(248, 250, 252, 0.28);
}

.fg-games-grid .game-desc {
    color: #E2E8F0;
}

.fg-games-grid .game-meta {
    color: #67E8F9;
}

.fg-hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.94) 100%);
}

.fg-hero-desc {
    color: #E2E8F0;
    text-shadow: 0 1px 8px rgba(15, 23, 42, 0.85);
}

.js-player-item.d-none {
    display: none !important;
}

.fg-filter-group {
    align-items: stretch;
}

.fg-mini-filter {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .fg-hero-section {
        padding-top: 1rem !important;
    }

    .fg-hero-container {
        border-radius: 14px;
    }

    .fg-hero-slides {
        height: 440px;
    }

    .fg-hero-content {
        padding-top: 2rem !important;
        padding-bottom: 5.25rem !important;
    }

    .fg-hero-title {
        font-size: 1.55rem !important;
        line-height: 1.25;
    }

    .fg-hero-subtitle {
        font-size: 1.15rem !important;
        color: #67E8F9;
        line-height: 1.3;
    }

    .fg-hero-desc {
        font-size: 1rem !important;
        color: #F8FAFC;
        line-height: 1.45;
    }

    .fg-hero-content .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .fg-hero-dots-container {
        bottom: 18px;
    }
}

@media (min-width: 992px) {
    .frost-garage-footer .row.g-4 > .col-lg-3 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

/* ===== PAGE TEMPLATE: tournaments ===== */
.fg-body-theme {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.fg-header-block {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.fg-header-block .navbar {
    background-color: #1E293B !important;
    border-bottom: 2px solid #6366F1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.fg-header-block .fg-navbar-scrolled {
    background-color: #0F172A !important;
    border-bottom-color: #06B6D4;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.25);
}

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

.fg-header-block .fg-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #F8FAFC;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.fg-header-block .fg-nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94A3B8 !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.fg-header-block .fg-nav-link:hover,
.fg-header-block .fg-nav-link:focus {
    color: #06B6D4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.fg-header-block .fg-dropdown-caret {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.fg-header-block .dropdown-toggle[aria-expanded="true"] .fg-dropdown-caret {
    transform: rotate(180deg);
}

.fg-header-block .fg-dropdown-menu {
    background-color: #1E293B;
    border-radius: 0px;
    border: 1px solid #06B6D4 !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.fg-header-block .fg-dropdown-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.fg-header-block .fg-dropdown-item:hover,
.fg-header-block .fg-dropdown-item:focus {
    background-color: #6366F1;
    color: #F8FAFC;
}

.fg-header-block .fg-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
    background-color: #06B6D4;
}

.fg-header-block .fg-cta-btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A !important;
    background-color: #06B6D4;
    border: 1px solid #06B6D4;
    border-radius: 0px;
    padding: 0.6rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.fg-header-block .fg-cta-btn:hover,
.fg-header-block .fg-cta-btn:focus {
    background-color: #6366F1;
    border-color: #6366F1;
    color: #F8FAFC !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.fg-header-block .fg-toggler-icon {
    color: #F8FAFC;
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .fg-header-block .fg-brand-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0 !important;
    }

    .fg-header-block .fg-nav-list-left {
        padding-right: 80px;
    }

    .fg-header-block .fg-nav-list-right {
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .fg-header-block .navbar-collapse {
        background-color: #1E293B;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid #6366F1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

.fg-detail-block {
    background-color: #0F172A;
}

.fg-console-hud {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    color: #06B6D4;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.fg-hud-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22C55E;
    box-shadow: 0 0 8px #22C55E;
    animation: fg-pulse 1.5s infinite;
}

@keyframes fg-pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.fg-hud-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.fg-console-screen-wrapper {
    background: #000;
    border: 2px solid #06B6D4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    overflow: hidden;
    border-radius: 8px;
}

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

.fg-fullscreen-bar {
    background: #1E293B;
    border-top: 1px solid #06B6D4;
}

.fg-fullscreen-action-btn,
.fg-exit-fullscreen-action-btn {
    background: transparent;
    border: 1px solid #06B6D4;
    color: #06B6D4;
    padding: 6px 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fg-fullscreen-action-btn:hover,
.fg-exit-fullscreen-action-btn:hover {
    background: #06B6D4;
    color: #0F172A;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.fg-console-screen-wrapper.fullscreen-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    border: none !important;
    border-radius: 0 !important;
}

.fg-console-screen-wrapper.fullscreen-mode .fg-game-iframe {
    height: calc(100vh - 50px) !important;
}

.fg-details-card,
.fg-sidebar-card,
.fg-comments-section {
    background-color: #1E293B;
    border: 1px solid #6366F1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fg-category-badge {
    font-family: 'Share Tech Mono', monospace;
    background-color: rgba(99, 102, 241, 0.15);
    color: #6366F1;
    border: 1px solid #6366F1;
    padding: 4px 12px;
    font-size: 0.85rem;
}

.fg-main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.25rem;
    color: #F8FAFC;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.fg-main-subtitle {
    font-size: 1.25rem;
    color: #06B6D4;
    font-weight: 600;
}

.fg-content-rich-text p {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #94A3B8;
}

.fg-tab-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #94A3B8;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.fg-tab-btn.active {
    color: #06B6D4;
    border-color: #06B6D4;
    background: rgba(6, 182, 212, 0.1);
}

.fg-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fg-info-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #94A3B8;
}

.fg-info-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #06B6D4;
}

.fg-sidebar-title,
.fg-section-title-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F8FAFC;
    border-left: 3px solid #6366F1;
    padding-left: 10px;
    letter-spacing: 1px;
}

.fg-input,
.fg-input-search {
    background-color: #0F172A !important;
    border: 1px solid #6366F1 !important;
    color: #F8FAFC !important;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.fg-input::placeholder,
.fg-input-search::placeholder {
    color: #64748B !important;
}

.fg-input:focus,
.fg-input-search:focus {
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    border-color: #06B6D4 !important;
}

.fg-mini-filter {
    font-family: 'Share Tech Mono', monospace;
    background: transparent;
    border: 1px solid #6366F1;
    color: #94A3B8;
    padding: 4px 12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.fg-mini-filter.active,
.fg-mini-filter:hover {
    background-color: #6366F1;
    color: #F8FAFC;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.fg-participant-item .badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
}

.bg-primary-neon {
    background-color: #6366F1 !important;
    color: #F8FAFC;
}

.bg-secondary-neon {
    background-color: #06B6D4 !important;
}

.game-comment-box {
    position: relative;
    background: #0F172A;
    border: 1px solid #6366F1;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

.reply-comment-card {
    margin-left: 40px;
    border-color: #06B6D4;
}

.reply-connector-line {
    position: absolute;
    left: -20px;
    top: -16px;
    width: 20px;
    height: 50px;
    border-left: 2px solid #06B6D4;
    border-bottom: 2px solid #06B6D4;
}

.game-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-avatar-wrapper {
    flex-shrink: 0;
}

.game-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6366F1;
    color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.reply-avatar {
    background: #06B6D4;
}

.game-user-info {
    display: flex;
    flex-direction: column;
}

.game-username {
    font-weight: 700;
    color: #F8FAFC;
}

.game-user-tag {
    font-size: 0.85rem;
    margin-left: 8px;
    font-family: 'Share Tech Mono', monospace;
}

.text-primary-neon {
    color: #6366F1;
}

.text-secondary-neon {
    color: #06B6D4;
}

.text-success-neon {
    color: #22C55E;
}

.game-meta-time {
    font-size: 0.75rem;
    color: #64748B;
}

.game-comment-body {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.game-comment-footer {
    display: flex;
    gap: 10px;
}

.game-btn {
    background: transparent;
    border: 1px solid #6366F1;
    color: #F8FAFC;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn-primary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #06B6D4;
}

.game-btn-secondary {
    border-color: #06B6D4;
}

.game-btn-secondary:hover {
    background: rgba(6, 182, 212, 0.2);
}

.fg-btn-primary {
    background-color: #6366F1;
    border: 1px solid #06B6D4;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.fg-btn-primary:hover {
    background-color: #06B6D4;
    border-color: #6366F1;
    color: #0F172A;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.frost-garage-footer {
    background-color: #0F172A;
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-top: 2px solid #6366F1;
    position: relative;
}

.frost-garage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    box-shadow: 0 0 10px #06B6D4;
}

.frost-garage-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    border-left: 3px solid #06B6D4;
    padding-left: 10px;
}

.frost-garage-footer .footer-desc {
    line-height: 1.6;
    color: #94A3B8;
}

.frost-garage-footer .footer-links li {
    margin-bottom: 8px;
}

.frost-garage-footer .footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.frost-garage-footer .footer-links a i {
    font-size: 0.8rem;
    margin-right: 5px;
    color: #6366F1;
    transition: transform 0.3s ease;
}

.frost-garage-footer .footer-links a:hover {
    color: #06B6D4;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
}

.frost-garage-footer .footer-links a:hover i {
    transform: translateX(3px);
    color: #06B6D4;
}

.frost-garage-footer .footer-contact a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-contact a:hover {
    color: #06B6D4;
}

.frost-garage-footer .text-cyan {
    color: #06B6D4 !important;
}

.frost-garage-footer .map-container {
    border: 1px solid #1E293B;
    padding: 5px;
    background-color: #1E293B;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.frost-garage-footer .map-container iframe {
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.frost-garage-footer .footer-divider {
    border-top: 1px solid #1E293B;
    opacity: 1;
}

.frost-garage-footer .copyright-text {
    font-size: 0.875rem;
    color: #94A3B8;
}

.frost-garage-footer .footer-legal-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.frost-garage-footer .footer-legal-links a:hover {
    color: #6366F1;
}

@media (max-width: 768px) {
    .fg-game-iframe {
        height: 320px;
    }

    .fg-main-title {
        font-size: 1.75rem;
    }

    .fg-main-subtitle {
        font-size: 1.1rem;
    }

    .reply-comment-card {
        margin-left: 20px;
    }
}

/* ===== hero spacing fix ===== */
.fg-hero-content > .d-flex.justify-content-center.gap-3.flex-wrap {
    margin-bottom: 34px;
}

.fg-hero-dots-container {
    bottom: 6px;
}

@media (max-width: 575.98px) {
    .fg-hero-content > .d-flex.justify-content-center.gap-3.flex-wrap {
        margin-bottom: 46px;
    }

    .fg-hero-dots-container {
        bottom: 20px;
    }
}

/* ===== compact mobile header fix ===== */
@media (max-width: 991.98px) {
    .fg-header-block .navbar {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .fg-header-block .navbar > .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        column-gap: 0.5rem;
        row-gap: 0;
    }

    .fg-header-block .navbar-brand.d-lg-none {
        display: inline-flex !important;
        align-items: center !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: calc(100% - 56px) !important;
        margin-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .fg-header-block .fg-brand-text {
        display: block !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        line-height: 1.15 !important;
    }

    .fg-header-block .fg-logo-img {
        flex: 0 0 auto !important;
        max-width: 36px !important;
    }

    .fg-header-block .navbar-toggler {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .fg-header-block .fg-toggler-icon {
        font-size: 1.65rem !important;
    }

    .fg-header-block .navbar-collapse {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 420px) {
    .fg-header-block .fg-brand-text {
        font-size: 0.9rem !important;
        letter-spacing: 0.5px !important;
    }

    .fg-header-block .fg-logo-img {
        max-width: 32px !important;
    }

    .fg-header-block .navbar-toggler {
        flex-basis: 40px !important;
        width: 40px !important;
        height: 40px !important;
    }
}
