:root {
    --primary-color: #0A1F1C;
    --secondary-color: #CD7F32;
    --accent-color: #39FF14;
    --bg-main: #051210;
    --bg-surface: #0D2B26;
    --bg-overlay: rgba(10, 31, 28, 0.85);
    --text-primary: #F5F5DC;
    --text-secondary: #9CAF88;
    --font-headings: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --gradient-bronze: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    --gradient-emerald: linear-gradient(180deg, #143D36 0%, #0A1F1C 100%);
    --border-bronze: 1px solid #665D1E;
    --shadow-glow: 0 0 15px rgba(205, 127, 50, 0.4);
    --shadow-neon: 0 0 20px rgba(57, 255, 20, 0.3);
}

.neonixilb-body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

* {
    box-sizing: border-box;
}

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

.btn-bronze {
    background: var(--gradient-bronze);
    color: #1A1A1A;
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    padding: 12px 32px;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-bronze:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
    color: #000;
}

.neon-indicator {
    background: var(--accent-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: var(--shadow-neon);
    animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.glass-panel {
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border: var(--border-bronze);
    border-radius: 4px;
}

/* ===== header ===== */
.neonixilb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.neonixilb-header .navbar {
    background-color: #0D2B26 !important;
    padding: 0.75rem 0;
    transition: background-color 0.3s ease;
}

.neonixilb-header .brand-logo {
    max-width: 45px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.4));
}

.neonixilb-header .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: #CD7F32;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.neonixilb-header .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #F5F5DC !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.neonixilb-header .nav-link:hover,
.neonixilb-header .nav-link:focus {
    color: #39FF14 !important;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.neonixilb-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #39FF14;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 5px #39FF14;
}

.neonixilb-header .nav-link:hover::after {
    width: 80%;
}

.neonixilb-header .navbar-toggler {
    border: 1px solid #665D1E;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(205, 127, 50, 0.1);
}

.neonixilb-header .toggler-icon {
    width: 24px;
    height: 24px;
    color: #CD7F32;
}

.neonixilb-header .header-divider {
    height: 3px;
    background: linear-gradient(90deg, #665D1E 0%, #CD7F32 50%, #665D1E 100%);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991.98px) {
    .neonixilb-header .navbar-collapse {
        background-color: #0D2B26;
        padding: 1.5rem 0;
        margin-top: 0.75rem;
        border-top: 1px solid #665D1E;
    }

    .neonixilb-header .nav-link {
        padding: 0.75rem 1rem !important;
        border-left: 3px solid transparent;
    }

    .neonixilb-header .nav-link:hover {
        border-left-color: #39FF14;
        background: rgba(57, 255, 20, 0.05);
    }

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

/* ===== hero ===== */
.hero-section {
    background-image: url('../media/photos/graphics/bionic-race-hero-background.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 18, 16, 0.95) 0%, rgba(5, 18, 16, 0.7) 50%, rgba(5, 18, 16, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-badge {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid #39FF14;
    color: #39FF14;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #F5F5DC;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    color: #9CAF88;
    max-width: 600px;
    line-height: 1.6;
}

.btn-bronze-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #1A1A1A;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease-out;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
    text-decoration: none;
}

.btn-bronze-action:hover {
    background: #CD7F32;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
}

.hero-glitch-line {
    height: 4px;
    background: linear-gradient(90deg, #39FF14 0%, transparent 100%);
    opacity: 0.3;
    animation: glitch-pulse 4s infinite;
}

@keyframes glitch-pulse {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.1;
    }
}

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

/* ===== bionics_section ===== */
.bionics-overview {
    background-color: #051210;
    background-image: url('../media/photos/graphics/bionics-lab-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bionics-overview__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 28, 0.85);
    z-index: 1;
}

.bionics-overview .container {
    z-index: 2;
}

.bionics-overview__title {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.bionics-overview__subtitle {
    font-family: 'Rajdhani', sans-serif;
    color: #9CAF88;
    max-width: 700px;
    font-size: 1.1rem;
}

.bionics-overview__card {
    background: #0D2B26;
    border: 1px solid #665D1E;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bionics-overview__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
    border-color: #CD7F32;
}

.bionics-overview__img-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 2px solid #665D1E;
}

.bionics-overview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bionics-overview__card:hover .bionics-overview__img {
    transform: scale(1.1);
}

.bionics-overview__status-pulse {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background-color: #39FF14;
    border-radius: 50%;
    box-shadow: 0 0 10px #39FF14;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bionics-overview__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bionics-overview__card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.bionics-overview__card-title a {
    color: #F5F5DC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bionics-overview__card-title a:hover {
    color: #CD7F32;
}

.bionics-overview__stats {
    margin-bottom: 1.5rem;
}

.bionics-overview__stat-item {
    margin-bottom: 0.75rem;
}

.bionics-overview__stat-label {
    font-family: 'Rajdhani', sans-serif;
    color: #9CAF88;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.bionics-overview__stat-bar {
    height: 4px;
    background: rgba(20, 61, 54, 0.5);
    border-radius: 2px;
    overflow: hidden;
}

.bionics-overview__stat-fill {
    height: 100%;
    background: #39FF14;
    box-shadow: 0 0 5px #39FF14;
}

.bionics-overview__card-btn {
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #0A1F1C !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 2px;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.bionics-overview__card-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.bionics-overview__main-btn {
    background: transparent;
    border: 2px solid #CD7F32;
    color: #CD7F32 !important;
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.bionics-overview__main-btn:hover {
    background: #CD7F32;
    color: #0A1F1C !important;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

@media (max-width: 767px) {
    .bionics-overview__title {
        font-size: 1.25rem;
    }

    .bionics-overview__subtitle {
        font-size: 0.95rem;
    }

    .bionics-overview__card-title {
        font-size: 1rem;
    }
}

/* ===== neo_city_section ===== */
.neo-city-zones-block {
    background-color: #051210;
    color: #F5F5DC;
    position: relative;
    overflow: hidden;
}

.neo-city-zones-block .text-secondary-custom {
    color: #9CAF88;
}

.neo-city-zones-block h2 {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.neo-city-zones-block .zone-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.neo-city-zones-block .zone-card:hover {
    border-color: #CD7F32;
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.3);
    transform: translateY(-8px);
}

.neo-city-zones-block .zone-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid #665D1E;
}

.neo-city-zones-block .zone-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.neo-city-zones-block .zone-card:hover .zone-card-img {
    transform: scale(1.1);
}

.neo-city-zones-block .zone-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.neo-city-zones-block .zone-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.neo-city-zones-block .zone-card-title a {
    color: #F5F5DC;
    text-decoration: none;
    transition: color 0.3s;
}

.neo-city-zones-block .zone-card-title a:hover {
    color: #CD7F32;
}

.neo-city-zones-block .zone-card-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #9CAF88;
    flex-grow: 1;
}

.neo-city-zones-block .btn-zone {
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #0A1F1C;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border: none;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.neo-city-zones-block .btn-zone:hover {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    filter: brightness(1.15);
    color: #000;
}

.neo-city-zones-block .btn-main-action {
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #0A1F1C;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.25rem 3rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.2);
}

.neo-city-zones-block .btn-main-action:hover {
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.5);
    transform: scale(1.05);
    color: #000;
}

/* ===== survival_section ===== */
.survival-terminal-block {
    background-color: #051210;
    color: #F5F5DC;
    overflow: hidden;
}

.survival-terminal-block .survival-terminal-title {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1.75rem;
}

.survival-terminal-block .survival-terminal-desc {
    font-family: 'Rajdhani', sans-serif;
    color: #9CAF88;
    font-size: 1.1rem;
    max-width: 600px;
}

.survival-terminal-block .survival-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    border-radius: 4px;
    transition: all 0.3s ease-out;
    position: relative;
    display: flex;
    flex-direction: column;
}

.survival-terminal-block .survival-card:hover {
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
    transform: translateY(-5px);
    border-color: #CD7F32;
}

.survival-terminal-block .survival-card-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid #665D1E;
}

.survival-terminal-block .survival-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.survival-terminal-block .survival-card:hover .survival-card-img {
    transform: scale(1.05);
}

.survival-terminal-block .survival-card-body {
    padding: 1.5rem;
}

.survival-terminal-block .survival-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.survival-terminal-block .survival-card-title a {
    color: #CD7F32;
    transition: color 0.3s ease;
}

.survival-terminal-block .survival-card-title a:hover {
    color: #39FF14;
}

.survival-terminal-block .survival-card-text {
    font-family: 'Rajdhani', sans-serif;
    color: #9CAF88;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.survival-terminal-block .survival-card-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #F5F5DC;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid #CD7F32;
    text-align: center;
    transition: all 0.3s ease;
}

.survival-terminal-block .survival-card-btn:hover {
    background: #CD7F32;
    color: #0A1F1C;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.survival-terminal-block .survival-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #0A1F1C;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.survival-terminal-block .survival-main-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
    color: #051210;
}

@media (max-width: 767.98px) {
    .survival-terminal-block .survival-terminal-title {
        font-size: 1.25rem;
    }

    .survival-terminal-block .survival-terminal-desc {
        font-size: 0.95rem;
    }
}

/* ===== footer ===== */
.neonixilb-footer {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #665D1E;
}

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

.neonixilb-footer .brand-name {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.neonixilb-footer .brand-desc {
    color: #9CAF88;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.neonixilb-footer .footer-title {
    font-family: 'Orbitron', sans-serif;
    color: #39FF14;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-left: 3px solid #CD7F32;
    padding-left: 12px;
}

.neonixilb-footer .footer-nav li {
    margin-bottom: 0.75rem;
}

.neonixilb-footer .footer-nav a {
    color: #F5F5DC;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.neonixilb-footer .footer-nav a:hover {
    color: #39FF14;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.neonixilb-footer .border-bronze {
    border-color: #665D1E !important;
}

.neonixilb-footer .copyright {
    color: #9CAF88;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .neonixilb-footer .footer-title {
        margin-top: 1rem;
    }

    .neonixilb-footer .brand-desc {
        max-width: 100%;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-container { font-family: 'Rajdhani', sans-serif; color: #F5F5DC; line-height: 1.6; max-width: 100%; overflow-x: hidden; } .policy-header { border-bottom: 2px solid #665D1E; padding-bottom: 1.5rem; text-align: center; } .policy-header h2 { font-family: 'Orbitron', sans-serif; color: #CD7F32; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; } .policy-header .last-updated { color: #9CAF88; font-size: 0.9rem; font-style: italic; } .policy-text-body { background: rgba(13, 43, 38, 0.6); padding: 2rem; border-radius: 12px; border: 1px solid rgba(102, 93, 30, 0.3); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } .policy-section h3 { font-family: 'Orbitron', sans-serif; color: #39FF14; font-size: 1.4rem; margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid #CD7F32; padding-left: 1rem; } .policy-section h4 { font-family: 'Orbitron', sans-serif; color: #CD7F32; font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.75rem; } .policy-section p { margin-bottom: 1rem; color: #F5F5DC; opacity: 0.9; } .policy-section ul { list-style-type: none; padding-left: 1.25rem; margin-bottom: 1.5rem; } .policy-section ul li { position: relative; padding-bottom: 0.5rem; padding-left: 1.5rem; color: #F5F5DC; } .policy-section ul li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background: #CD7F32; border-radius: 50%; box-shadow: 0 0 5px #39FF14; } .policy-section strong { color: #39FF14; font-weight: 600; } @media (max-width: 768px) { .policy-header h2 { font-size: 1.25rem; } .policy-section h3 { font-size: 1.15rem; } .policy-section h4 { font-size: 1rem; } .policy-text-body { padding: 1.25rem; } }

/* ===== PAGE: terms ===== */
.policy-section { background-color: #051210; padding: 60px 0; min-height: 80vh; }.policy-content-container { max-width: 900px; margin: 0 auto; padding: 40px; background: #0D2B26; border: 1px solid #665D1E; box-shadow: 0 0 20px rgba(205, 127, 50, 0.2); border-radius: 4px; position: relative; }.policy-content-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #CD7F32, transparent); }.policy-title { font-family: 'Orbitron', sans-serif; color: #CD7F32; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 30px; border-bottom: 2px solid #665D1E; pb-2; }.policy-content-container h2 { font-family: 'Orbitron', sans-serif; color: #CD7F32; font-size: 1.5rem; margin-top: 40px; margin-bottom: 20px; display: flex; align-items: center; }.policy-content-container h2::before { content: '>'; color: #39FF14; margin-right: 15px; font-weight: bold; }.policy-content-container p { font-family: 'Rajdhani', sans-serif; color: #F5F5DC; line-height: 1.8; font-size: 1.1rem; margin-bottom: 20px; }.policy-list { list-style: none; padding-left: 0; margin-bottom: 25px; }.policy-list li { font-family: 'Rajdhani', sans-serif; color: #9CAF88; padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid rgba(102, 93, 30, 0.3); }.policy-list li::before { content: '◈'; position: absolute; left: 0; color: #39FF14; font-size: 0.8rem; top: 14px; }@media (max-width: 768px) { .policy-content-container { padding: 25px; margin: 0 15px; } .policy-content-container h2 { font-size: 1.2rem; } .policy-content-container p { font-size: 1rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-section { background: #051210; padding: 4rem 1rem; color: #F5F5DC; font-family: 'Rajdhani', sans-serif; line-height: 1.8; }.policy-content-container { max-width: 900px; margin: 0 auto; background: rgba(13, 43, 38, 0.9); border: 1px solid #665D1E; border-radius: 8px; padding: 2.5rem; box-shadow: 0 0 20px rgba(205, 127, 50, 0.15); }.policy-content-container h2 { font-family: 'Orbitron', sans-serif; color: #CD7F32; text-transform: uppercase; letter-spacing: 2px; margin-top: 2rem; margin-bottom: 1.25rem; font-size: 1.5rem; border-left: 4px solid #39FF14; padding-left: 1rem; }.policy-content-container p { margin-bottom: 1.5rem; color: #9CAF88; font-size: 1.1rem; text-align: justify; }.policy-content-container ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }.policy-content-container li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #F5F5DC; }.policy-content-container li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background: #39FF14; border-radius: 50%; box-shadow: 0 0 8px #39FF14; }@media (max-width: 768px) { .policy-content-container { padding: 1.5rem; } .policy-content-container h2 { font-size: 1.2rem; } .policy-content-container p { font-size: 1rem; } }

/* ===== PAGE: cookies ===== */
.policy-section { background-color: #051210; padding: 60px 20px; min-height: 80vh; position: relative; } .policy-content-container { max-width: 800px; margin: 0 auto; color: #F5F5DC; font-family: 'Rajdhani', sans-serif; } .policy-content-container h2 { color: #CD7F32; font-family: 'Orbitron', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2.5rem; margin-bottom: 1.25rem; border-left: 4px solid #39FF14; padding-left: 15px; background: rgba(13, 43, 38, 0.5); padding-top: 5px; padding-bottom: 5px; } .policy-content-container p { line-height: 1.8; margin-bottom: 1.5rem; color: #9CAF88; font-size: 1.1rem; } .policy-content-container ul { list-style: none; padding-left: 0; margin-bottom: 2rem; } .policy-content-container li { position: relative; padding-left: 2rem; margin-bottom: 1rem; color: #9CAF88; } .policy-content-container li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 12px; height: 12px; background: #CD7F32; border: 1px solid #39FF14; box-shadow: 0 0 8px rgba(57, 255, 20, 0.4); transform: rotate(45deg); } .policy-content-container strong { color: #39FF14; font-weight: 600; } @media (max-width: 767px) { .policy-section { padding: 40px 15px; } .policy-content-container h2 { font-size: 16px; letter-spacing: 0.05em; } .policy-content-container p, .policy-content-container li { font-size: 14px; line-height: 1.5; } }

/* ===== PAGE: play ===== */
.play-section {
  background: #051210;
  min-height: 100vh;
  color: #F5F5DC;
  font-family: 'Rajdhani', sans-serif;
}

.play-section .breadcrumb-item + .breadcrumb-item::before {
  color: #665D1E;
}

.play-section .btn-back {
  color: #CD7F32;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.play-section .btn-back:hover {
  color: #39FF14;
}

.play-section .game-interface-card {
  background: #0D2B26;
  border: 2px solid #665D1E;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  overflow: hidden;
}

.play-section .interface-header {
  background: linear-gradient(135deg, #143D36 0%, #0A1F1C 100%);
  border-bottom: 1px solid #665D1E;
}

.play-section .interface-header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #CD7F32;
  letter-spacing: 2px;
}

.play-section .status-indicator {
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.play-section .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #39FF14;
  border-radius: 50%;
  box-shadow: 0 0 10px #39FF14;
  animation: pulse 2s infinite;
}

.play-section .status-text {
  color: #39FF14;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-section .game-control-bar {
  background: #0A1F1C;
  border-bottom: 1px solid #665D1E;
}

.play-section .btn-fullscreen {
  background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
  border: none;
  color: #0A1F1C;
  padding: 6px 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-section .btn-fullscreen:hover {
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
  transform: translateY(-1px);
}

.play-section .game-viewport {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.play-section .game-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.play-section .info-block {
  padding: 15px;
  background: rgba(20, 61, 54, 0.5);
  border-left: 3px solid #CD7F32;
}

.play-section .info-label {
  display: block;
  font-size: 0.75rem;
  color: #9CAF88;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.play-section .info-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5F5DC;
}

.play-section .description-block h2 {
  font-family: 'Orbitron', sans-serif;
  color: #CD7F32;
  border-bottom: 1px solid #665D1E;
  display: inline-block;
  padding-bottom: 5px;
}

.play-section .specs-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

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

.play-section .specs-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #39FF14;
  font-weight: bold;
}

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

@media (max-width: 768px) {
  .play-section h1.h2 { font-size: 1.25rem; }
  .play-section .info-block { margin-bottom: 10px; }
}

/* ===== PAGE: bionics ===== */
.bionics-list-section {
  background-color: #051210;
  color: #F5F5DC;
  font-family: 'Rajdhani', sans-serif;
}

.bionics-list-section .bionics-title {
  font-family: 'Orbitron', sans-serif;
  color: #CD7F32;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.bionics-list-section .js-bionic-search {
  background-color: #0D2B26;
  border: 1px solid #665D1E;
  color: #F5F5DC;
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.bionics-list-section .js-bionic-search:focus {
  background-color: #143D36;
  border-color: #39FF14;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
  color: #F5F5DC;
  outline: none;
}

.bionics-list-section .js-bionic-search::placeholder {
  color: #9CAF88;
}

.bionics-list-section .search-svg {
  color: #CD7F32;
}

.bionics-list-section .bionic-card {
  background-color: #0D2B26;
  border: 1px solid #665D1E;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bionics-list-section .bionic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
  border-color: #CD7F32;
}

.bionics-list-section .card-img-link {
  height: 220px;
}

.bionics-list-section .bionic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bionics-list-section .bionic-card:hover .bionic-img {
  transform: scale(1.05);
}

.bionics-list-section .card-title a {
  color: #CD7F32;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.bionics-list-section .card-title a:hover {
  color: #39FF14;
}

.bionics-list-section .badge-bionic {
  background-color: rgba(57, 255, 20, 0.1);
  color: #39FF14;
  border: 1px solid #39FF14;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: 4px;
}

.bionics-list-section .btn-bionic {
  background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
  color: #051210;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.bionics-list-section .btn-bionic:hover {
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
  transform: scale(1.02);
  color: #051210;
}

@media (max-width: 767px) {
  .bionics-list-section .card-img-link {
    height: 180px;
  }
  .bionics-list-section .bionics-title {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: neo-city ===== */
.neo-city-section {
  background-color: #051210;
  padding: 80px 0;
  font-family: 'Rajdhani', sans-serif;
  color: #F5F5DC;
}

.neo-city-section .neo-city-title {
  font-family: 'Orbitron', sans-serif;
  color: #CD7F32;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 700;
}

.neo-city-section .neo-city-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #39FF14, transparent);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.neo-city-section .neo-city-lead {
  font-size: 1.1rem;
  color: #9CAF88;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.neo-city-section .neo-filter-btn {
  background: rgba(10, 31, 28, 0.8);
  border: 1px solid #665D1E;
  color: #CD7F32;
  padding: 8px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.neo-city-section .neo-filter-btn:hover,
.neo-city-section .neo-filter-btn.active {
  background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
  color: #0A1F1C;
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
  border-color: #CD7F32;
}

.neo-city-section .neo-card {
  background: #0D2B26;
  border: 1px solid #665D1E;
  border-radius: 0;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.neo-city-section .neo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(205, 127, 50, 0.2);
}

.neo-city-section .neo-card-img-link {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.neo-city-section .neo-card:hover .neo-card-img {
  transform: scale(1.1);
}

.neo-city-section .neo-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 255, 20, 0.8);
  color: #051210;
  padding: 2px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
}

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

.neo-city-section .neo-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.neo-city-section .neo-card-title a {
  color: #F5F5DC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.neo-city-section .neo-card-title a:hover {
  color: #39FF14;
}

.neo-city-section .neo-card-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.neo-city-section .neo-meta-item {
  color: #9CAF88;
}

.neo-city-section .neo-btn {
  background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
  border: none;
  color: #051210;
  padding: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: auto;
  text-align: center;
  display: block;
}

.neo-city-section .neo-btn:hover {
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  filter: brightness(1.1);
}

/* ===== PAGE: survival ===== */
.survival-terminal-block {
  background-color: #051210;
  font-family: 'Rajdhani', sans-serif;
  color: #9CAF88;
}

.survival-terminal-block h1, 
.survival-terminal-block h2, 
.survival-terminal-block h3 {
  font-family: 'Orbitron', sans-serif;
  color: #F5F5DC;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.survival-terminal-block .text-secondary-custom {
  color: #CD7F32;
  font-weight: 600;
}

.survival-terminal-block .terminal-divider {
  width: 80px;
  height: 4px;
  background: #CD7F32;
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.6);
}

.survival-terminal-block .search-container {
  max-width: 500px;
}

.survival-terminal-block .search-icon-bg {
  background-color: #0A1F1C;
  border: 1px solid #665D1E;
  color: #CD7F32;
}

.survival-terminal-block .js-survival-search {
  background-color: #0D2B26;
  border: 1px solid #665D1E;
  color: #F5F5DC;
  padding: 12px 20px;
}

.survival-terminal-block .js-survival-search::placeholder {
  color: #9CAF88;
  opacity: 0.6;
}

.survival-terminal-block .js-survival-search:focus {
  background-color: #143D36;
  border-color: #39FF14;
  color: #F5F5DC;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.survival-terminal-block .survival-card {
  background-color: rgba(10, 31, 28, 0.85);
  border: 1px solid #665D1E;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.survival-terminal-block .survival-card:hover {
  transform: translateY(-5px);
  border-color: #CD7F32;
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.survival-terminal-block .card-img-top {
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #665D1E;
  transition: filter 0.3s ease;
}

.survival-terminal-block .survival-card:hover .card-img-top {
  filter: brightness(1.1);
}

.survival-terminal-block .badge-bronze {
  background: linear-gradient(135deg, #8C6239, #CD7F32);
  color: #051210;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.survival-terminal-block .text-accent {
  color: #39FF14;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.survival-terminal-block .btn-bronze {
  background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
  color: #F5F5DC;
  border: 1px solid #665D1E;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.survival-terminal-block .btn-bronze:hover {
  filter: brightness(1.2);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.survival-terminal-block .game-access-panel {
  background: linear-gradient(180deg, #143D36 0%, #0A1F1C 100%);
  border: 2px solid #665D1E;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.survival-terminal-block .game-access-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.1), transparent 70%);
  pointer-events: none;
}

.survival-terminal-block .btn-neon {
  background-color: transparent;
  border: 2px solid #39FF14;
  color: #39FF14;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.survival-terminal-block .btn-neon:hover {
  background-color: #39FF14;
  color: #051210;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.survival-terminal-block .icon-svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767.98px) {
  .survival-terminal-block h1 { font-size: 1.5rem; }
  .survival-terminal-block h2 { font-size: 1.25rem; }
  .survival-terminal-block .card-img-top { height: 160px; }
}

/* ===== PAGE: reports ===== */
.reports-terminal { background-color: #051210; color: #F5F5DC; font-family: 'Rajdhani', sans-serif; }
.reports-terminal .border-bronze { border: 1px solid #665D1E; border-radius: 4px; }
.reports-terminal__header { background: #0D2B26; border-left: 4px solid #CD7F32; }
.reports-terminal__title { font-family: 'Orbitron', sans-serif; color: #CD7F32; letter-spacing: 0.1em; word-break: break-word; overflow-wrap: break-word; }
@media (max-width: 768px) { .reports-terminal__title { font-size: 1.4rem; letter-spacing: 0.05em; } }
.reports-terminal__subtitle { font-size: 0.9rem; color: #9CAF88 !important; }
.reports-terminal .bg-surface { background-color: #0A1F1C; }
.reports-terminal .text-accent { color: #39FF14 !important; }
.reports-terminal .text-primary-light { color: #F5F5DC; }
.reports-terminal .text-secondary-light { color: #9CAF88; }
.reports-terminal .form-control:focus { background-color: #0D2B26; border-color: #39FF14; color: #F5F5DC; box-shadow: 0 0 10px rgba(57, 255, 20, 0.2); }
.reports-terminal .btn-outline-bronze { border: 1px solid #CD7F32; color: #CD7F32; transition: all 0.3s ease; }
.reports-terminal .btn-outline-bronze:hover, .reports-terminal .btn-outline-bronze.active { background-color: #CD7F32; color: #0A1F1C; }
.reports-card { background: rgba(13, 43, 38, 0.95); border: 1px solid #665D1E; border-radius: 0; transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden; }
.reports-card:hover { border-color: #CD7F32; box-shadow: 0 0 15px rgba(205, 127, 50, 0.4); transform: translateY(-5px); }
.reports-card__img-wrapper { position: relative; height: 200px; overflow: hidden; }
.reports-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.reports-card:hover .reports-card__img { transform: scale(1.1); }
.reports-card__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(10, 31, 28, 0.8) 0%, rgba(10, 31, 28, 0) 100%); }
.reports-card__title { font-family: 'Orbitron', sans-serif; color: #F5F5DC; line-height: 1.2; text-transform: uppercase; }
.reports-card__tag { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.reports-card .btn-bronze { background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%); color: #0A1F1C; border: none; font-family: 'Inter', sans-serif; font-weight: 700; text-transform: uppercase; border-radius: 0; padding: 12px; transition: all 0.3s ease; }
.reports-card .btn-bronze:hover { box-shadow: 0 0 15px rgba(205, 127, 50, 0.6); transform: scale(1.02); filter: brightness(1.1); }
.reports-terminal .w-5 { width: 1.25rem; }
.reports-terminal .h-5 { height: 1.25rem; }

.nx-comment-card {
    background: #0D2B26;
    border: 1px solid #665D1E;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.nx-comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #CD7F32 0%, transparent 100%);
}

.nx-comment-avatar {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
    border: 2px solid #CD7F32;
    border-radius: 4px;
    padding: 2px;
    background: #051210;
}

.nx-avatar-wrapper {
    position: relative;
}

.nx-status-glow {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #39FF14;
    border-radius: 50%;
    box-shadow: 0 0 10px #39FF14;
    border: 2px solid #0D2B26;
}

.nx-comment-author {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.nx-comment-date {
    font-family: 'Inter', sans-serif;
    color: #9CAF88;
    font-size: 0.75rem;
}

.nx-comment-body {
    font-family: 'Rajdhani', sans-serif;
    color: #F5F5DC;
    font-size: 1rem;
    line-height: 1.5;
}

.nx-action-btn {
    background: transparent;
    border: none;
    color: #9CAF88;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
}

.nx-action-btn:hover {
    color: #39FF14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.nx-icon {
    width: 18px;
    height: 18px;
}

.border-bronze {
    border-left: 2px solid #665D1E !important;
}

.nx-reply-card {
    background: rgba(13, 43, 38, 0.6);
    border: 1px solid rgba(102, 93, 30, 0.5);
    clip-path: none;
}

.nx-avatar-sm {
    width: 48px !important;
    height: 48px !important;
}

.nx-author-sm {
    font-size: 0.9rem;
    color: #39FF14;
}

.nx-body-sm {
    font-size: 0.95rem;
    color: #F5F5DC;
}

.nx-mention {
    color: #CD7F32;
    font-weight: 600;
    margin-right: 5px;
}

.nx-reply-wrapper {
    position: relative;
}

.nx-reply-wrapper::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 10px;
    height: 2px;
    background: #665D1E;
}


/* ===== PAGE TEMPLATE: bionics ===== */
.bionics-detail-template {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
}

.bionics-detail-template .detail-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #CD7F32;
}

.bionics-detail-template .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #CD7F32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
    margin-top: 1rem;
}

.bionics-detail-template .hero-subtitle {
    font-size: 1.25rem;
    color: #39FF14;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.bionics-detail-template .breadcrumb-item a {
    color: #9CAF88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bionics-detail-template .breadcrumb-item a:hover {
    color: #39FF14;
}

.bionics-detail-template .breadcrumb-item.active {
    color: #F5F5DC;
}

.bionics-detail-template .content-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.bionics-detail-template .meta-info {
    color: #9CAF88;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(102, 93, 30, 0.3);
    padding-bottom: 1rem;
}

.bionics-detail-template .meta-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: text-bottom;
    color: #CD7F32;
}

.bionics-detail-template .main-article-text h2,
.bionics-detail-template .main-article-text h3 {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bionics-detail-template .main-article-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bionics-detail-template .btn-bronze {
    display: inline-block;
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #051210;
    padding: 12px 32px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.bionics-detail-template .btn-bronze:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    color: #051210;
}

.bionics-detail-template .sidebar-widget {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    border-radius: 4px;
}

.bionics-detail-template .sidebar-widget h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #39FF14;
    border-bottom: 1px solid #665D1E;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.bionics-detail-template .accordion-item-custom button {
    width: 100%;
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid #665D1E;
    color: #F5F5DC;
    padding: 10px 15px;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bionics-detail-template .accordion-item-custom button:hover {
    background: rgba(205, 127, 50, 0.2);
    color: #39FF14;
}

.bionics-detail-template .accordion-panel-custom {
    display: none;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #665D1E;
    border-top: none;
}

.bionics-detail-template .accordion-panel-custom.active {
    display: block;
}

.bionics-detail-template .related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bionics-detail-template .related-list li {
    margin-bottom: 0.75rem;
}

.bionics-detail-template .related-list a {
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding-left: 10px;
    border-left: 2px solid transparent;
}

.bionics-detail-template .related-list a:hover {
    color: #39FF14;
    border-left-color: #39FF14;
    padding-left: 15px;
}

@media (max-width: 991.98px) {
    .bionics-detail-template .hero-title {
        font-size: 1.8rem;
    }

    .bionics-detail-template .detail-content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: neo-city ===== */
.neocity-detail {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
}

.neocity-hero {
    padding: 100px 0 60px;
    background-position: center;
    background-size: cover;
    border-bottom: 2px solid #665D1E;
}

.neocity-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #CD7F32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
    margin-bottom: 1rem;
}

.neocity-hero-subtitle {
    font-size: 1.25rem;
    color: #9CAF88;
    letter-spacing: 0.05em;
}

.neocity-detail .breadcrumb-item,
.neocity-detail .breadcrumb-item a {
    color: #9CAF88 !important;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.neocity-detail .breadcrumb-item.active {
    color: #39FF14 !important;
}

.neocity-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.neocity-section-title {
    font-family: 'Orbitron', sans-serif;
    color: #39FF14;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #665D1E;
}

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

.neocity-feature-img {
    border: 1px solid #665D1E;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.neocity-tech-tabs .nav-tabs {
    border-bottom: 1px solid #665D1E;
}

.neocity-tech-tabs .nav-link {
    background: rgba(13, 43, 38, 0.8);
    border: 1px solid #665D1E;
    color: #9CAF88;
    margin-right: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.neocity-tech-tabs .nav-link:hover {
    color: #39FF14;
    border-color: #CD7F32;
}

.neocity-tech-tabs .nav-link.active {
    background: #CD7F32 !important;
    color: #051210 !important;
    border-color: #CD7F32 !important;
}

.neocity-tab-pane-container {
    background: rgba(10, 31, 28, 0.5);
}

.neocity-spec-list {
    list-style: none;
    padding: 0;
}

.neocity-spec-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(102, 93, 30, 0.3);
    display: flex;
    justify-content: space-between;
}

.neocity-spec-list li strong {
    color: #9CAF88;
}

.neocity-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #051210;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.neocity-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
    color: #051210;
}

.neocity-sidebar-title {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #39FF14;
    padding-left: 10px;
}

.neocity-meta-icon svg {
    width: 24px;
    height: 24px;
    color: #39FF14;
}

.neocity-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #9CAF88;
}

.neocity-meta-value {
    font-weight: 600;
    color: #F5F5DC;
}

.neocity-links-list {
    list-style: none;
    padding: 0;
}

.neocity-links-list li {
    margin-bottom: 12px;
}

.neocity-links-list a {
    color: #F5F5DC;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.neocity-links-list a:hover {
    color: #39FF14;
    padding-left: 8px;
    border-bottom-color: rgba(57, 255, 20, 0.3);
}

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

    .neocity-hero {
        padding: 60px 0 40px;
    }

    .neocity-content-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: survival ===== */
.survival-detail-template {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
}

.survival-detail-template .detail-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #665D1E;
}

.survival-detail-template .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #CD7F32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
    margin-bottom: 1rem;
}

.survival-detail-template .hero-subtitle {
    color: #39FF14;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.survival-detail-template .breadcrumb-item {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.survival-detail-template .breadcrumb-item a {
    color: #9CAF88;
    text-decoration: none;
}

.survival-detail-template .breadcrumb-item.active {
    color: #CD7F32 !important;
}

.survival-detail-template .content-card {
    background: rgba(13, 43, 38, 0.85);
    border: 1px solid #665D1E;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.survival-detail-template .meta-item {
    color: #9CAF88;
    font-size: 0.9rem;
}

.survival-detail-template .meta-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #39FF14;
}

.survival-detail-template .detail-main-img {
    border: 2px solid #665D1E;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.survival-detail-template .article-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #F5F5DC;
}

.survival-detail-template .article-body h2,
.survival-detail-template .article-body h3 {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    margin: 2rem 0 1rem;
}

.survival-detail-template .sidebar-widget {
    background: #0D2B26;
    border-left: 4px solid #CD7F32;
    border-radius: 4px;
}

.survival-detail-template .widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #39FF14;
    text-transform: uppercase;
    border-bottom: 1px solid #665D1E;
    padding-bottom: 10px;
}

.survival-detail-template .recent-link {
    color: #F5F5DC;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
    display: block;
}

.survival-detail-template .recent-link:hover {
    color: #39FF14;
    transform: translateX(5px);
}

.survival-detail-template .accordion-trigger {
    background: #143D36;
    border: 1px solid #665D1E;
    padding: 1rem;
    color: #F5F5DC;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
}

.survival-detail-template .accordion-trigger:hover {
    background: #1c5248;
}

.survival-detail-template .accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: #CD7F32;
}

.survival-detail-template .accordion-item-custom.active .accordion-icon {
    transform: rotate(180deg);
}

.survival-detail-template .accordion-panel {
    display: none;
    border-left: 1px solid #665D1E;
    border-right: 1px solid #665D1E;
    border-bottom: 1px solid #665D1E;
    background: rgba(13, 43, 38, 0.5);
}

.survival-detail-template .specs-list {
    list-style: none;
    padding-left: 0;
}

.survival-detail-template .specs-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.survival-detail-template .specs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #39FF14;
    border-radius: 2px;
    box-shadow: 0 0 5px #39FF14;
}

.survival-detail-template .cta-block {
    background: linear-gradient(135deg, #143D36 0%, #0A1F1C 100%);
    border: 2px solid #CD7F32;
}

.survival-detail-template .btn-survival-action {
    display: inline-block;
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #1A1A1A !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.survival-detail-template .btn-survival-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(205, 127, 50, 0.6);
    color: #000 !important;
}

.survival-detail-template .status-box {
    background: rgba(10, 31, 28, 0.5);
    border: 1px solid #665D1E;
}

.bg-accent {
    background-color: #39FF14 !important;
    box-shadow: 0 0 10px #39FF14;
}

@media (max-width: 768px) {
    .survival-detail-template .hero-title {
        font-size: 1.5rem;
    }

    .survival-detail-template .detail-hero {
        height: 250px;
    }

    .survival-detail-template .content-card {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: reports ===== */
.report-main-content {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
}

.report-hero {
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #665D1E;
}

.report-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, #051210 0%, transparent 100%);
}

.custom-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #CD7F32;
    text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #39FF14;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #9CAF88;
}

.report-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.report-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.text-bronze {
    color: #CD7F32;
}

.text-accent {
    color: #39FF14;
}

.report-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-left: 4px solid #CD7F32;
    padding-left: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.1rem;
        letter-spacing: 0.04em;
    }
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    color: #F5F5DC !important;
    font-family: 'Orbitron', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #9CAF88;
    margin-bottom: 1.5rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.content-wrapper li {
    color: #9CAF88;
    margin-bottom: 0.75rem;
}

.btn-bronze {
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    color: #051210 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.btn-bronze:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
    color: #000 !important;
}

.sidebar-card {
    background-color: #0D2B26;
    border: 1px solid #665D1E;
    border-radius: 4px;
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    color: #39FF14;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    background: rgba(57, 255, 20, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
}

.status-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #39FF14;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #39FF14;
    display: inline-block;
}

.related-link {
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.related-link:hover {
    color: #39FF14 !important;
}

@media (max-width: 768px) {
    .report-hero {
        padding: 60px 0 40px;
    }

    .report-title {
        font-size: 1.5rem;
    }

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

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

/* ===== PAGE TEMPLATE: play ===== */
.play-detail-main {
    background-color: #051210;
    color: #F5F5DC;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.detail-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #665D1E;
}

.detail-hero .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #CD7F32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
    text-transform: uppercase;
    font-size: 2.5rem;
}

.detail-hero .hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    color: #39FF14;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.game-frame-outer {
    background: #0D2B26;
    padding: 1.5rem;
    border: 1px solid #665D1E;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.game-control-bar {
    border-bottom: 1px solid rgba(102, 93, 30, 0.3);
    padding-bottom: 1rem;
}

.status-indicator .pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #39FF14;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #39FF14;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: #39FF14;
    text-transform: uppercase;
}

.btn-fullscreen {
    background: linear-gradient(135deg, #8C6239 0%, #CD7F32 50%, #A67C52 100%);
    border: none;
    padding: 0.6rem 1.2rem;
    color: #051210;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-fullscreen:hover {
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
    transform: translateY(-2px);
}

.fullscreen-icon {
    width: 18px;
    height: 18px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border: 2px solid #665D1E;
    border-radius: 4px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.spec-card {
    background: #0D2B26;
    border: 1px solid #665D1E;
    padding: 2rem;
    border-radius: 4px;
    position: relative;
}

.spec-title {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #39FF14;
    padding-left: 12px;
}

.spec-list .spec-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(102, 93, 30, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.spec-item span {
    color: #9CAF88;
}

.content-card {
    background: #0D2B26;
    border: 1px solid #665D1E;
    padding: 2rem;
    border-radius: 4px;
}

.content-title {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-text {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #F5F5DC;
}

.guide-container {
    background: rgba(13, 43, 38, 0.5);
    border: 1px dashed #665D1E;
    padding: 2.5rem;
    border-radius: 8px;
}

.guide-title {
    font-family: 'Orbitron', sans-serif;
    color: #39FF14;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.guide-item h4 {
    color: #CD7F32;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.guide-item p {
    color: #9CAF88;
    font-size: 0.95rem;
}

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

    .guide-container {
        padding: 1.5rem;
    }
}

.neonixilb-header .navbar {
    background-color: #0D2B26 !important;
    padding: 0.75rem 0;
}

.neonixilb-header .brand-logo {
    max-width: 45px;
    height: auto;
}

.neonixilb-header .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #CD7F32;
}

.neonixilb-header .nav-link {
    font-family: 'Rajdhani', sans-serif;
    color: #F5F5DC !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
}

.neonixilb-footer {
    background-color: #051210;
    color: #F5F5DC;
    border-top: 2px solid #665D1E;
}

.neonixilb-footer .brand-name {
    font-family: 'Orbitron', sans-serif;
    color: #CD7F32;
}

/* ===== Task 3: Center bionics-and-runners card content ===== */
.bionics-list-section .card-body {
    text-align: center;
    padding: 1.25rem 1.5rem;
}

/* ===== Task 4: Fix survival-terminal card text visibility ===== */
.survival-terminal-block .card-body {
    color: #F5F5DC;
}

.survival-terminal-block .card-title,
.survival-terminal-block .card-title a {
    color: #CD7F32 !important;
}

.survival-terminal-block .card-text {
    color: #9CAF88 !important;
}

/* ===== Task 6: Fix report-hero text visibility ===== */
.report-hero .container {
    position: relative;
    z-index: 2;
}

.neonixilb-footer .footer-title {
    color: #39FF14;
    font-family: 'Orbitron', sans-serif;
}