:root {
    --primary: #00F0FF;
    --secondary: #B0B8C3;
    --accent: #FF3E00;
    --bg-main: #0D0F12;
    --bg-surface: #16191E;
    --bg-surface-alt: #1E2229;
    --metallic-gradient: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
    --text-primary: #F8F9FA;
    --text-secondary: #ADB5BD;
    --text-muted: #6C757D;
    --border-default: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 240, 255, 0.3);
    --font-headings: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden
}

.metallic-theme {
    background-attachment: fixed
}

.industrial-bg {
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 62, 0, 0.03) 0%, transparent 40%)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

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

a {
    text-decoration: none;
    transition: all 0.3s linear
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: var(--bg-main);
    font-family: var(--font-headings);
    font-weight: 700;
    box-shadow: 0 0 15px var(--border-glow);
    transition: all 0.3s linear
}

.btn-primary:hover {
    background: var(--primary);
    filter: brightness(1.1);
    box-shadow: 0 0 25px var(--primary);
    transform: translateY(-2px)
}

.section-spacing {
    padding: clamp(80px, 10vh, 140px) 0
}

.industrial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 4px;
    position: relative;
    transition: border-color 0.3s linear
}

.industrial-card:hover {
    border-color: var(--primary)
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-main)
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-alt);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary)
}

/* ===== header ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #16191E;
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

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

.main-header .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #F8F9FA;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.main-header .header-logo {
    object-fit: contain;
}

.main-header .brand-text {
    background: linear-gradient(to right, #F8F9FA, #00F0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ADB5BD;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #00F0FF;
}

.main-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #00F0FF;
    box-shadow: 0 0 10px #00F0FF;
}

.main-header .dropdown-menu {
    background: #1E2229;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.main-header .dropdown-item {
    color: #ADB5BD;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.main-header .dropdown-item:hover {
    background: rgba(0, 240, 255, 0.1);
    color: #00F0FF;
    padding-left: 1.75rem;
}

.main-header .custom-toggler {
    border: 1px solid rgba(0, 240, 255, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.main-header .navbar-toggler-icon {
    filter: invert(80%) sepia(50%) saturate(500%) hue-rotate(140deg);
}

.main-header .btn-industrial {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00F0FF 0%, #0072FF 100%);
    color: #121418;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.main-header .btn-industrial:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    color: #121418;
}

.main-header .btn-industrial:active {
    transform: translateY(1px);
}

@media (max-width: 991.98px) {
    .main-header .navbar-collapse {
        background: #16191E;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .main-header .nav-link.active::after {
        display: none;
    }

    .main-header .header-actions {
        margin-top: 1rem;
        width: 100%;
    }

    .main-header .btn-industrial {
        width: 100%;
    }

    .main-header .dropdown-menu {
        background: #16191E;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .main-header .dropdown-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* ===== hero ===== */
.flox-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    background-color: #0D0F12;
    background-image: url('../files/images/graphics/floxenezy-hero-industrial-bg.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #F8F9FA;
    z-index: 1;
}

.flox-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 15, 18, 0.9) 0%, rgba(22, 25, 30, 0.7) 100%);
    z-index: -1;
}

.flox-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.flox-hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.flox-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    padding: 6px 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.flox-main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
    color: #F8F9FA;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.flox-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ADB5BD;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flox-highlight-block {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #FF3E00;
    padding: 15px 25px;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #F8F9FA;
    letter-spacing: 1px;
}

.flox-stats-row {
    background: rgba(22, 25, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 4px;
    display: inline-flex !important;
}

.flox-stat-item {
    min-width: 120px;
}

.flox-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00F0FF;
}

.flox-stat-label {
    font-size: 0.75rem;
    color: #6C757D;
    letter-spacing: 1px;
}

.flox-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.flox-tag {
    background: #1E2229;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ADB5BD;
    transition: all 0.3s ease;
}

.flox-tag:hover {
    border-color: #00F0FF;
    color: #F8F9FA;
}

.flox-btn-primary {
    background: linear-gradient(90deg, #00F0FF, #007bff);
    border: none;
    color: #0D0F12;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flox-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
    color: #000;
}

@media (max-width: 768px) {
    .flox-hero-section {
        padding: 80px 0;
    }

    .flox-stats-row {
        flex-direction: column;
        width: 100%;
    }

    .flox-stat-item {
        padding: 10px 0;
    }

    .flox-main-title {
        font-size: 1.8rem !important;
    }

    .flox-description {
        font-size: 0.95rem;
    }
}

/* ===== game-of-the-day ===== */
.game-day-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: #0D0F12;
    background-image: linear-gradient(180deg, rgba(13, 15, 18, 0.8) 0%, rgba(13, 15, 18, 0.95) 100%),
    url('../files/images/graphics/brushed-metal-texture.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.game-day-wrapper {
    background: rgba(22, 25, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-day-visual-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.game-day-link {
    display: block;
    position: relative;
    transition: transform 0.4s ease;
}

.game-day-link:hover {
    transform: scale(1.02);
}

.game-day-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.game-day-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 15, 18, 0.6) 0%, transparent 50%);
}

.game-day-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00F0FF;
    color: #121418;
    padding: 6px 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.game-day-content-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.game-day-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8F9FA;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-day-subtitle {
    color: #ADB5BD;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.game-day-reason-box {
    background: rgba(44, 51, 61, 0.4);
    padding: 20px;
    border-left: 3px solid #00F0FF;
    border-radius: 0 4px 4px 0;
}

.reason-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #F8F9FA;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reason-text {
    color: #ADB5BD;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.game-day-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.stats-label {
    color: #6C757D;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.stats-value {
    color: #00F0FF;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.progress-container {
    flex-grow: 1;
    max-width: 250px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-base {
    flex-grow: 1;
    height: 6px;
    background: #1E2229;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #00F0FF;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.progress-text {
    color: #ADB5BD;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    min-width: 30px;
}

.btn-game-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00F0FF 0%, #0072FF 100%);
    color: #121418;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-game-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
    color: #121418;
}

.btn-game-primary:active {
    transform: translateY(1px);
}

@media (max-width: 991px) {
    .game-day-image {
        height: 300px;
    }

    .game-day-wrapper {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .game-day-title {
        font-size: 1.4rem;
    }

    .game-day-image {
        height: 220px;
    }

    .stats-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .progress-container {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== new-games ===== */
.new-games-forge {
    background-color: #0D0F12;
    color: #F8F9FA;
    overflow: hidden;
}

.new-games-forge .section-title-neon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00F0FF;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    letter-spacing: 2px;
}

.new-games-forge .badge-cyber {
    display: inline-block;
    background: #FF3E00;
    color: #F8F9FA;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.new-games-forge .metallic-card {
    background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.new-games-forge .metallic-card:hover {
    border-color: #00F0FF;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.new-games-forge .metallic-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.new-games-forge .metallic-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-games-forge .metallic-card:hover .metallic-card-img {
    transform: scale(1.05);
}

.new-games-forge .metallic-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.new-games-forge .metallic-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #F8F9FA;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.new-games-forge .metallic-card:hover .metallic-card-title {
    color: #00F0FF;
}

.new-games-forge .metallic-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ADB5BD;
}

.new-games-forge .btn-metallic {
    background: linear-gradient(135deg, #00F0FF 0%, #0077FF 100%);
    border: none;
    color: #0D0F12;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 12px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease, transform 0.1s ease;
    border-radius: 2px;
}

.new-games-forge .btn-metallic:hover {
    filter: brightness(1.2);
    color: #0D0F12;
}

.new-games-forge .btn-metallic:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .new-games-forge .section-title-neon {
        font-size: 1.75rem;
    }

    .new-games-forge {
        padding: 60px 0;
    }
}

/* ===== games-grid ===== */
.games-grid-block {
    background-color: #0D0F12;
    color: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.games-grid-block h2 {
    font-family: 'Orbitron', sans-serif;
    color: #F8F9FA;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-grid-block .text-secondary {
    color: #ADB5BD !important;
    font-family: 'Inter', sans-serif;
}

.games-grid-block .game-card {
    background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.games-grid-block .game-card:hover {
    transform: translateY(-8px);
    border-color: #00F0FF;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.games-grid-block .game-card-img-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.games-grid-block .game-card-img-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 25, 30, 0.8), transparent);
    opacity: 0.6;
}

.games-grid-block .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.games-grid-block .card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.games-grid-block .card-title a {
    color: #F8F9FA;
    transition: color 0.3s ease;
}

.games-grid-block .card-title a:hover {
    color: #00F0FF;
}

.games-grid-block .badge.bg-dark-cyan {
    background-color: rgba(0, 240, 255, 0.1);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.games-grid-block .btn-primary {
    background: linear-gradient(180deg, #00F0FF 0%, #007780 100%);
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #121418;
    padding: 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.games-grid-block .btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.games-grid-block .btn-outline-cyan {
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    padding: 8px 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.games-grid-block .btn-outline-cyan:hover,
.games-grid-block .btn-outline-cyan.active {
    background-color: #00F0FF;
    color: #121418;
}

.games-grid-block .js-game-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 767px) {
    .games-grid-block .card-img-top {
        height: 180px;
    }

    .games-grid-block h2 {
        font-size: 1.5rem;
    }

    .games-grid-block .js-filter-container {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .games-grid-block .js-filter-container::-webkit-scrollbar {
        height: 4px;
    }

    .games-grid-block .js-filter-container::-webkit-scrollbar-thumb {
        background: #00F0FF;
        border-radius: 2px;
    }
}

/* ===== support ===== */
.support-block {
    background-color: #0D0F12;
    padding: 80px 0;
    color: #F8F9FA;
    overflow: hidden;
}

.support-block .support-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00F0FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-block .support-lead {
    font-family: 'Inter', sans-serif;
    color: #ADB5BD;
    line-height: 1.6;
    font-size: 1.1rem;
}

.support-block .support-visual {
    position: relative;
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 10px;
    background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
}

.support-block .support-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.support-block .solution-card {
    background: #16191E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.support-block .solution-card:hover {
    border-color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
}

.support-block .card-header-icon {
    font-size: 2rem;
    color: #00F0FF;
    margin-bottom: 16px;
}

.support-block .solution-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #F8F9FA;
    margin-bottom: 12px;
}

.support-block .solution-text {
    font-family: 'Inter', sans-serif;
    color: #ADB5BD;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.support-block .industrial-alert {
    background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
    border-left: 4px solid #FF3E00;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-block .alert-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #FF3E00;
    text-transform: uppercase;
}

.support-block .alert-text {
    font-family: 'Inter', sans-serif;
    color: #ADB5BD;
    font-size: 0.95rem;
}

.support-block .text-accent {
    color: #FF3E00 !important;
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .support-block .support-heading {
        font-size: 1.5rem;
    }

    .support-block .support-lead {
        font-size: 0.95rem;
    }

    .support-block {
        padding: 40px 0;
    }
}

/* ===== footer ===== */
.flox-footer {
    background-color: #0D0F12;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    color: #ADB5BD;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.flox-footer .footer-title {
    color: #00F0FF;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flox-footer .footer-desc {
    color: #ADB5BD;
    font-size: 0.9rem;
    line-height: 1.6;
}

.flox-footer a {
    color: #ADB5BD;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.flox-footer a:hover {
    color: #00F0FF;
    padding-left: 5px;
}

.flox-footer .footer-logo {
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3));
    max-width: 50px;
    height: auto;
}

.flox-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.flox-footer .footer-copyright {
    font-size: 0.8rem;
    color: #6C757D;
}

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

    .flox-footer a:hover {
        padding-left: 0;
    }

    .flox-footer .footer-title {
        margin-top: 1rem;
    }
}

.collection-hero {
    min-height: 400px;
    background: linear-gradient(rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.8)),
    url('../files/images/graphics/a-frog-and-the-flies-hunt.webp') center/cover;
    padding-top: 100px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #00F0FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ADB5BD;
    max-width: 700px;
    margin: 0 auto;
}

.games-collection-block {
    background-color: #0D0F12;
    position: relative;
}

.filter-bar {
    background: #16191E;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-wrapper i {
    color: #00F0FF;
    font-size: 1.2rem;
}

.js-game-search {
    background: #1E2229;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F8F9FA;
    padding-left: 3rem;
    height: 50px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.js-game-search:focus {
    background: #1E2229;
    border-color: #00F0FF;
    color: #F8F9FA;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.js-game-search::placeholder {
    color: #6C757D;
}

.btn-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ADB5BD;
    padding: 0.5rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    border-color: #00F0FF;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.05);
}

.game-card {
    background: #16191E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

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

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

.card-body-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #F8F9FA;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.game-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.meta-tag {
    font-size: 0.75rem;
    background: #1E2229;
    color: #6C757D;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-industrial {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00F0FF 0%, #0072FF 100%);
    color: #121418;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: auto;
}

.btn-industrial:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    color: #121418;
}

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

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

    .filter-bar {
        padding: 1rem;
    }
}


/* ===== PAGE: about ===== */
.about-content {
  background-color: #0D0F12;
  font-family: 'Inter', sans-serif;
  color: #F8F9FA;
}

.about-content h1, 
.about-content h2, 
.about-content h3, 
.about-content .stat-value {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content .text-cyan {
  color: #00F0FF !important;
}

.about-content .text-light-gray {
  color: #ADB5BD;
  line-height: 1.8;
}

.about-content .breadcrumb-item + .breadcrumb-item::before {
  color: #6C757D;
}

.about-content .breadcrumb-item a {
  color: #ADB5BD;
  transition: color 0.3s ease;
}

.about-content .breadcrumb-item a:hover {
  color: #00F0FF;
}

.about-content .about-image-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
}

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

.about-content .frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #00F0FF;
}

.about-content .top-left {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.about-content .bottom-right {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

.about-content .feature-card {
  background: #16191E;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
}

.about-content .feature-card:hover {
  transform: translateY(-5px);
  border-color: #00F0FF;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.about-content .about-stats-panel {
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #00F0FF;
}

.about-content .stat-item {
  padding: 10px;
}

@media (max-width: 768px) {
  .about-content h1 {
    font-size: 1.75rem;
  }
  .about-content .display-6 {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: chat ===== */
.chat-interface-block {
  background-color: #0D0F12;
  font-family: 'Inter', sans-serif;
  min-height: 80vh;
}

.chat-interface-block .heading-industrial {
  font-family: 'Orbitron', sans-serif;
  color: #F8F9FA;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.25rem;
}

.chat-interface-block .sidebar-metallic,
.chat-interface-block .chat-panel-metallic {
  background: linear-gradient(135deg, #1E2229 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.chat-interface-block .list-group-item {
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: #ADB5BD;
  padding: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.chat-interface-block .list-group-item:hover {
  background: rgba(0, 240, 255, 0.05);
  color: #F8F9FA;
  border-left-color: rgba(0, 240, 255, 0.5);
}

.chat-interface-block .list-group-item.active {
  background: rgba(0, 240, 255, 0.1);
  color: #00F0FF;
  border-left-color: #00F0FF;
  z-index: 1;
}

.chat-interface-block .chat-messages {
  height: 450px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #00F0FF #16191E;
}

.chat-interface-block .chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-interface-block .chat-messages::-webkit-scrollbar-thumb {
  background-color: #00F0FF;
  border-radius: 10px;
}

.chat-interface-block .message-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-interface-block .message-bubble.system {
  background: #1E2229;
  color: #ADB5BD;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: flex-start;
}

.chat-interface-block .message-bubble.user {
  background: rgba(0, 240, 255, 0.1);
  color: #F8F9FA;
  border: 1px solid #00F0FF;
  align-self: flex-end;
  margin-left: auto;
}

.chat-interface-block .bg-success-glow {
  background-color: #00FF66;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
  color: #000;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

.chat-interface-block .form-control {
  background: #0D0F12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8F9FA;
  padding: 0.75rem 1rem;
}

.chat-interface-block .form-control:focus {
  background: #0D0F12;
  border-color: #00F0FF;
  box-shadow: 0 0 0 0.25rem rgba(0, 240, 255, 0.25);
  color: #F8F9FA;
}

.chat-interface-block .form-control::placeholder {
  color: #FFFFFF;
}

.chat-interface-block .btn-primary-industrial {
  background: linear-gradient(135deg, #00F0FF 0%, #0077FF 100%);
  border: none;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  transition: transform 0.2s;
}

.chat-interface-block .btn-primary-industrial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.chat-interface-block .avatar-frame {
  padding: 2px;
  background: #00F0FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.achievements-section h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00F0FF;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.achievements-section .text-cyan {
  color: #00F0FF !important;
}

.achievements-section .bg-surface {
  background-color: #16191E !important;
}

.achievements-section .border-cyan {
  border-color: rgba(0, 240, 255, 0.5) !important;
}

.achievements-section .achievement-card {
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievements-section .achievement-card:hover {
  border-color: #00F0FF;
  transform: translateY(-5px);
}

.achievements-section .icon-frame {
  width: 60px;
  height: 60px;
  background: #1E2229;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.achievements-section .icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #00F0FF);
}

.achievements-section .js-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.achievements-section .progress {
  height: 6px;
  background-color: #0D0F12;
  border-radius: 3px;
  overflow: visible;
}

.achievements-section .progress-bar {
  background-color: #00F0FF;
  box-shadow: 0 0 10px #00F0FF;
  transition: width 0.6s ease;
}

.achievements-section .btn-outline-cyan {
  color: #00F0FF;
  border-color: #00F0FF;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.achievements-section .btn-outline-cyan:hover,
.achievements-section .btn-outline-cyan.active {
  background-color: #00F0FF;
  color: #121418;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.achievements-section .form-control::placeholder {
  color: #FFFFFF;
}

.achievements-section .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 240, 255, 0.25);
  border-color: #00F0FF;
}

.achievements-section .breadcrumb-item + .breadcrumb-item::before {
  color: #6C757D;
}

@media (max-width: 767.98px) {
  .achievements-section .display-4 {
    font-size: 2rem;
  }
  .achievements-section .achievement-card {
    margin-bottom: 10px;
  }
}

/* ===== PAGE: how-to-play ===== */
.htplay-instructions {
  background-color: #0D0F12;
  color: #F8F9FA;
  font-family: 'Inter', sans-serif;
}

.htplay-breadcrumb .breadcrumb-item a {
  color: #ADB5BD;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.htplay-breadcrumb .breadcrumb-item a:hover {
  color: #00F0FF;
}

.htplay-main-title {
  font-family: 'Orbitron', sans-serif;
  color: #00F0FF;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

.htplay-section-title {
  font-family: 'Orbitron', sans-serif;
  color: #00F0FF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.75rem;
}

.htplay-step-card {
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.htplay-step-card:hover {
  border-color: #00F0FF;
  transform: translateY(-5px);
}

.htplay-step-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 240, 255, 0.1);
  line-height: 1;
  z-index: 1;
}

.htplay-image-wrapper {
  height: 180px;
  overflow: hidden;
}

.htplay-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.htplay-card-body {
  padding: 1.5rem;
  z-index: 2;
  position: relative;
}

.htplay-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #F8F9FA;
  margin-bottom: 1rem;
}

.htplay-card-text {
  line-height: 1.6;
  font-size: 0.95rem;
}

.htplay-info-panel {
  background: #16191E;
  border-left: 4px solid #00F0FF;
  border-radius: 4px;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
}

.htplay-spec-icon {
  font-size: 1.5rem;
  color: #00F0FF;
}

.htplay-accordion .accordion-button {
  background: #1E2229;
  color: #F8F9FA;
  font-family: 'Orbitron', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px !important;
  padding: 1.25rem;
  box-shadow: none;
}

.htplay-accordion .accordion-button:not(.collapsed) {
  background: #2C333D;
  color: #00F0FF;
  border-bottom: 2px solid #00F0FF;
}

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

.htplay-accordion .accordion-body {
  background: #16191E;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 0;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .htplay-main-title {
    font-size: 1.75rem;
  }
  .htplay-section-title {
    font-size: 1.4rem;
  }
  .htplay-step-number {
    font-size: 2rem;
  }
}

/* ===== PAGE: hall-of-fame ===== */
.hof-leaderboard-block { background-color: #0D0F12; color: #ADB5BD; font-family: 'Inter', sans-serif; } .hof-leaderboard-block .font-heading { font-family: 'Orbitron', sans-serif; text-transform: uppercase; letter-spacing: 2px; } .hof-leaderboard-block .breadcrumb-item + .breadcrumb-item::before { color: #6C757D; } .hof-leaderboard-block .hof-filter-group .btn { border-radius: 0; border: 1px solid rgba(0, 240, 255, 0.3); color: #00F0FF; padding: 0.75rem 1.5rem; transition: all 0.3s ease; font-family: 'Orbitron', sans-serif; font-size: 0.875rem; } .hof-leaderboard-block .hof-filter-group .btn.active, .hof-leaderboard-block .hof-filter-group .btn:hover { background-color: #00F0FF; color: #0D0F12; box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); } .hof-leaderboard-block .hof-podium-card { background: linear-gradient(135deg, #2C333D 0%, #16191E 100%); border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease; position: relative; } .hof-leaderboard-block .hof-podium-card:hover { transform: translateY(-10px); border-color: #00F0FF; } .hof-leaderboard-block .podium-avatar-wrapper { position: relative; width: 120px; height: 120px; } .hof-leaderboard-block .podium-avatar-wrapper img { width: 100%; height: 100%; object-fit: cover; border-width: 3px !important; } .hof-leaderboard-block .rank-badge { position: absolute; bottom: -10px; right: 10px; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.5); } .hof-leaderboard-block .rank-badge.gold { background: linear-gradient(45deg, #FFD700, #FFA500); } .hof-leaderboard-block .rank-badge.silver { background: linear-gradient(45deg, #C0C0C0, #808080); } .hof-leaderboard-block .rank-badge.bronze { background: linear-gradient(45deg, #CD7F32, #8B4513); } .hof-leaderboard-block .card-rank-1 { border: 1px solid #00F0FF; box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); } .hof-leaderboard-block .hof-list-container { background: #16191E; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; } .hof-leaderboard-block .table-dark { background-color: transparent; } .hof-leaderboard-block .hof-row { transition: background 0.3s ease; } .hof-leaderboard-block .hof-row:hover { background-color: rgba(0, 240, 255, 0.05); } .hof-leaderboard-block .rank-number { font-family: 'Orbitron', sans-serif; font-weight: 700; color: #6C757D; } .hof-leaderboard-block .player-mini-avatar { width: 32px; height: 32px; background: #2C333D; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #00F0FF; font-weight: 700; font-size: 0.75rem; border: 1px solid rgba(0, 240, 255, 0.2); }

@media (max-width: 767.98px) {
  .hof-leaderboard-block { overflow-x: hidden; }
  .hof-leaderboard-block .hof-filter-group { flex-wrap: wrap; width: 100%; }
  .hof-leaderboard-block .hof-filter-group .btn { flex: 1 1 auto; padding: 0.5rem 0.75rem; font-size: 0.75rem; }
  .hof-leaderboard-block .podium-avatar-wrapper { width: 90px; height: 90px; }
  .hof-leaderboard-block .rank-badge { width: 32px; height: 32px; font-size: 1rem; }
  .hof-leaderboard-block .hof-list-container { padding: 0.5rem !important; }
  .hof-leaderboard-block .table th, .hof-leaderboard-block .table td { padding: 0.5rem; font-size: 0.85rem; }
  .hof-leaderboard-block .player-mini-avatar { width: 28px; height: 28px; font-size: 0.65rem; }
}

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  background-color: #0D0F12;
  color: #F8F9FA;
  font-family: 'Inter', sans-serif;
}

.privacy-content-section .industrial-policy-card {
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.privacy-content-section .card-header-accent {
  height: 4px;
  background: #00F0FF;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.privacy-content-section .policy-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #00F0FF;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(0, 240, 255, 0.2);
  padding-bottom: 1rem;
}

.privacy-content-section .policy-h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F8F9FA;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.privacy-content-section .policy-h2 i {
  color: #00F0FF;
}

.privacy-content-section p {
  line-height: 1.8;
  color: #ADB5BD;
  margin-bottom: 1.25rem;
}

.privacy-content-section .custom-list {
  list-style: none;
  padding-left: 0;
}

.privacy-content-section .custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ADB5BD;
}

.privacy-content-section .custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background-color: #00F0FF;
  box-shadow: 0 0 5px #00F0FF;
}

.privacy-content-section .breadcrumb-item a {
  color: #6C757D;
  transition: color 0.3s ease;
}

.privacy-content-section .breadcrumb-item a:hover {
  color: #00F0FF;
}

.privacy-content-section .breadcrumb-item.active {
  color: #00F0FF !important;
}

.privacy-content-section .btn-industrial-back {
  background: transparent;
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'Orbitron', sans-serif;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  letter-spacing: 1px;
}

.privacy-content-section .btn-industrial-back:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  color: #F8F9FA;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .privacy-content-section .policy-title {
    font-size: 1.75rem;
  }
  .privacy-content-section .policy-h2 {
    font-size: 1.25rem;
  }
  .privacy-content-section .p-4 {
    padding: 1.5rem !important;
  }
}

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

.terms-section .terms-card {
  background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.terms-section .terms-title {
  font-family: 'Orbitron', sans-serif;
  color: #00F0FF;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 5px solid #FF3E00;
  padding-left: 20px;
}

.terms-section .terms-subtitle {
  font-family: 'Orbitron', sans-serif;
  color: #F8F9FA;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding-bottom: 10px;
}

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

.terms-section .terms-list {
  list-style: none;
  padding-left: 0;
}

.terms-section .terms-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.terms-section .terms-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #FF3E00;
  font-weight: bold;
}

.terms-section p {
  line-height: 1.8;
}

.terms-section .lead {
  color: #F8F9FA;
  font-weight: 500;
}

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

/* ===== PAGE: disclaimer ===== */
.disclaimer-section { background-color: #0D0F12; min-height: 80vh; }.disclaimer-section .text-cyan { color: #00F0FF; }.disclaimer-section .text-silver { color: #ADB5BD; }.disclaimer-section .breadcrumb-item + .breadcrumb-item::before { color: #6C757D; }.disclaimer-section .disclaimer-card { background: linear-gradient(135deg, #2C333D 0%, #16191E 100%); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; box-shadow: 0 15px 35px rgba(0,0,0,0.5); position: relative; overflow: hidden; }.disclaimer-section .disclaimer-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #00F0FF; }.disclaimer-section .disclaimer-main-title { font-family: 'Orbitron', sans-serif; color: #F8F9FA; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: calc(1.5rem + 1vw); }.disclaimer-section .disclaimer-sub-title { font-family: 'Orbitron', sans-serif; color: #F8F9FA; font-size: 1.25rem; font-weight: 500; }.disclaimer-section .disclaimer-text { font-family: 'Inter', sans-serif; color: #ADB5BD; line-height: 1.8; font-size: 1rem; }.disclaimer-section .italic { font-style: italic; }.disclaimer-section .border-secondary-subtle { border-color: rgba(255, 255, 255, 0.05) !important; }@media (max-width: 767px) { .disclaimer-section .disclaimer-main-title { font-size: 1.5rem; } .disclaimer-section .disclaimer-sub-title { font-size: 1.1rem; } .disclaimer-section .disclaimer-text { font-size: 0.9rem; } }

.main-comment-wrapper {
    background: linear-gradient(135deg, #2C333D 0%, #16191E 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #00F0FF;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comment-avatar {
    width: 64px;
    height: 64px;
    border: 2px solid #00F0FF;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.author-name {
    font-family: 'Orbitron', sans-serif;
    color: #F8F9FA;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.badge-rank {
    background: #00F0FF;
    color: #0D0F12;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 2px;
}

.comment-body-text {
    color: #ADB5BD;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.btn-action-glow {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    transition: 0.3s;
}

.btn-action-glow:hover {
    background: #00F0FF;
    color: #0D0F12;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.btn-action-ghost {
    color: #ADB5BD;
    border: 1px solid transparent;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
}

.btn-action-ghost:hover {
    color: #F8F9FA;
    border-color: rgba(255, 255, 255, 0.2);
}

.reply-comment-wrapper {
    background: #1E2229;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -25px;
    top: -20px;
    width: 20px;
    height: 40px;
    border-left: 2px solid rgba(0, 240, 255, 0.2);
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    border-bottom-left-radius: 8px;
}

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

.author-name-sm {
    font-family: 'Orbitron', sans-serif;
    color: #00F0FF;
    font-weight: 500;
    font-size: 0.9rem;
}

.comment-body-text-sm {
    color: #ADB5BD;
    font-family: 'Inter', sans-serif;
}

.btn-link-cyan {
    color: #00F0FF;
    font-size: 0.75rem;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.btn-link-cyan:hover {
    color: #F8F9FA;
    text-shadow: 0 0 5px #00F0FF;
}


/* ===== PAGE TEMPLATE: games ===== */
.game-page-template {
    padding-bottom: 80px;
}

.game-page-template .breadcrumb {
    background: rgba(22, 25, 30, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.game-page-template .breadcrumb-item a {
    color: #ADB5BD;
    transition: color 0.3s ease;
}

.game-page-template .breadcrumb-item a:hover {
    color: #00F0FF;
}

.game-page-template .game-display-wrapper {
    background: #16191E;
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.game-page-template .iframe-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
}

.game-page-template .game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-page-template .btn-fullscreen {
    background: linear-gradient(135deg, #00F0FF 0%, #0072FF 100%);
    border: none;
    color: #121418;
    padding: 6px 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.game-page-template .btn-fullscreen:hover {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: translateY(-1px);
}

.game-page-template .btn-exit-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: rgba(0, 240, 255, 0.8);
    border: none;
    color: #121418;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.game-page-template .content-card {
    background: #16191E;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-page-template .game-title {
    font-family: 'Orbitron', sans-serif;
    color: #F8F9FA;
    letter-spacing: 1px;
}

.game-page-template .game-description-body {
    color: #ADB5BD;
    line-height: 1.8;
}

.game-page-template .tech-specs li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    font-size: 0.9rem;
}

.game-page-template .tech-specs span {
    color: #6C757D;
}

.game-page-template .recent-game-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.game-page-template .recent-game-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.game-page-template .img-thumb img {
    object-fit: cover;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.game-page-template .js-game-container:fullscreen,
.game-page-template .js-game-container:-webkit-full-screen,
.game-page-template .js-game-container:-moz-full-screen,
.game-page-template .js-game-container:-ms-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: #000 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    max-width: none !important;
    max-height: none !important;
}

.game-page-template .js-game-container:fullscreen .game-control-bar,
.game-page-template .js-game-container:-webkit-full-screen .game-control-bar,
.game-page-template .js-game-container:-moz-full-screen .game-control-bar,
.game-page-template .js-game-container:-ms-fullscreen .game-control-bar {
    display: none !important;
}

.game-page-template .js-game-container:fullscreen .iframe-container,
.game-page-template .js-game-container:-webkit-full-screen .iframe-container,
.game-page-template .js-game-container:-moz-full-screen .iframe-container,
.game-page-template .js-game-container:-ms-fullscreen .iframe-container {
    width: 100% !important;
    height: 100% !important;
    flex: 1 1 auto !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #000 !important;
}

.game-page-template .js-game-container:fullscreen .game-iframe,
.game-page-template .js-game-container:-webkit-full-screen .game-iframe,
.game-page-template .js-game-container:-moz-full-screen .game-iframe,
.game-page-template .js-game-container:-ms-fullscreen .game-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

@media (max-width: 768px) {
    .game-page-template .iframe-container {
        height: 350px;
    }

    .game-page-template .btn-fullscreen span {
        display: none;
    }

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