:root {
    --primary-accent: #00f2ff;
    --secondary-accent: #7000ff;
    --background-main: #05050a;
    --background-card: #12121f;
    --text-primary-dark: #ffffff;
    --text-secondary-dark: #a0a0c0;
    --border-color: #00f2ff33;
    --button-hover-glow: 0 0 15px #00f2ff;
    --pixel-border: 4px solid var(--primary-accent);
    --header-offset: 88px;
}

html {
    scroll-padding-top: calc(var(--header-offset) + 16px);
}

[id] {
    scroll-margin-top: calc(var(--header-offset) + 16px);
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: none;
}

h1,
h2,
h3,
.arcade-font {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-accent);
    text-shadow: 4px 4px 0px var(--secondary-accent);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-left: 8px solid var(--primary-accent);
    padding-left: 1rem;
}

h3 {
    font-size: 1.75rem;
}

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

.pixel-card {
    background: var(--background-card);
    border: 4px solid var(--border-color);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);
    transition: none !important;
}

.pixel-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 8px 8px 0px var(--secondary-accent);
    background: #1a1a2e;
}

.btn-retro {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-decoration: none;
    border: 4px solid var(--primary-accent);
    background: var(--primary-accent);
    color: var(--background-main);
    position: relative;
    box-shadow: 4px 4px 0px #000;
    transition: none !important;
}

.btn-retro:hover {
    background: var(--background-main);
    color: var(--primary-accent);
    box-shadow: none;
    transform: translate(4px, 4px);
}

.btn-outline-retro {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-decoration: none;
    border: 4px solid var(--primary-accent);
    background: transparent;
    color: var(--primary-accent);
    transition: none !important;
}

.btn-outline-retro:hover {
    background: var(--primary-accent);
    color: var(--background-main);
}

.section-padding {
    padding: 100px 0;
}

.pixel-border-bottom {
    border-bottom: 8px solid var(--border-color);
    position: relative;
}

.pixel-border-bottom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--background-main);
    background-image: linear-gradient(90deg, transparent 50%, var(--background-main) 50%);
    background-size: 8px 8px;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 10, 0.95);
    border-bottom: 4px solid var(--primary-accent);
}

/* ===== header ===== */
.slr-header .slr-nav {
    background-color: #05050a !important;
    border-bottom: 2px solid #00f2ff33;
    padding: 0.75rem 0;
    z-index: 1050;
}

.slr-header .slr-brand-centered {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.slr-header .slr-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px #00f2ff);
}

.slr-header .slr-site-name {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slr-header .nav-link {
    color: #ffffff !important;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem;
    transition: color 0.1s ease-in-out;
}

.slr-header .nav-link:hover {
    color: #00f2ff !important;
    text-shadow: 0 0 8px #00f2ff;
}

.slr-header .dropdown-menu {
    background-color: #12121f;
    border: 2px solid #00f2ff;
    border-radius: 0;
    padding: 0;
    margin-top: 0.5rem;
    z-index: 1200;
}

.slr-header .dropdown-item {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #00f2ff33;
    transition: background-color 0.1s;
}

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

.slr-header .dropdown-item:hover {
    background-color: #00f2ff;
    color: #05050a;
}

.slr-header .slr-toggle-icon {
    color: #00f2ff;
    font-size: 1.75rem;
}

.slr-header .navbar-toggler {
    border: 2px solid #00f2ff33;
    border-radius: 0;
    padding: 0.25rem 0.5rem;
}

.slr-header .navbar-toggler:focus {
    box-shadow: 0 0 10px #00f2ff;
}

@media (min-width: 992px) {
    .slr-header .slr-brand-centered {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1100;
    }

    .slr-header .slr-spacer {
        width: 280px;
    }

    .slr-header .nav-item.dropdown {
        position: relative;
        z-index: 1201;
    }

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

@media (max-width: 991px) {
    .slr-header .navbar-collapse {
        background-color: #12121f;
        padding: 1.5rem;
        margin-top: 0.75rem;
        border: 2px solid #00f2ff33;
    }

    .slr-header .nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #ffffff11;
    }

    .slr-header .nav-link:last-child {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.hero-block {
    position: relative;
    background-color: #05050a;
    overflow: hidden;
    padding: calc(var(--header-offset) + 16px) 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-layer-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #12121f 0%, #05050a 100%);
    z-index: 0;
}

.hero-bg-layer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #05050a;
    z-index: 0;
}

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

.hero-title {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #7000ff;
    margin-top: 1rem;
}

.hero-description {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-btn-primary {
    background-color: #00f2ff;
    color: #05050a;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    box-shadow: 4px 4px 0px #7000ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px #00f2ff;
    color: #05050a;
}

.hero-btn-secondary {
    background-color: transparent;
    color: #00f2ff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid #00f2ff;
    border-radius: 0;
    box-shadow: 4px 4px 0px rgba(112, 0, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-secondary:hover {
    background-color: rgba(0, 242, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.hero-media-showcase {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    border: 4px solid #00f2ff;
    background-color: #12121f;
}

.hero-main-visual {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-offset-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100%;
    height: 100%;
    border: 4px solid #7000ff;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-block {
        padding: calc(var(--header-offset) + 40px) 0 60px;
        text-align: center;
    }

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

    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-btn-group {
        align-items: center;
    }

    .hero-media-showcase {
        margin-top: 40px;
    }

    .hero-offset-frame {
        top: 20px;
        left: 20px;
    }
}

@media (min-width: 992px) {
    .hero-media-showcase {
        transform: translateX(10%);
    }

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

/* ===== about_platform ===== */
.about-platform {
    background-color: #05050a;
    color: #a0a0c0;
    overflow: hidden;
    font-family: 'Exo 2', sans-serif;
}

.about-platform__arcade-title {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 1.5rem;
    line-height: 1.3;
    text-shadow: 3px 3px 0px #7000ff;
    margin-bottom: 1rem;
}

.about-platform__subtitle {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-platform__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #a0a0c0;
}

.about-platform__feature-card {
    background: #12121f;
    border-left: 4px solid #00f2ff;
    border-radius: 0;
    transition: none;
}

.about-platform__icon-box {
    background: rgba(0, 242, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2ff;
    font-size: 1.25rem;
    border: 1px solid #00f2ff33;
}

.about-platform__btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.75rem;
    border-radius: 0;
    border: 4px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: none;
}

.about-platform__btn--primary {
    background: #00f2ff;
    color: #05050a;
    border-color: #00f2ff;
    box-shadow: 4px 4px 0px #7000ff;
}

.about-platform__btn--primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 4px 4px 0px #00f2ff;
    color: #05050a;
}

.about-platform__btn--secondary {
    background: transparent;
    color: #00f2ff;
    border-color: #00f2ff;
}

.about-platform__btn--secondary:hover {
    background: #00f2ff;
    color: #05050a;
}

.about-platform__pixel-frame {
    border: 4px solid #00f2ff;
    background: #12121f;
    padding: 8px;
    box-shadow: 8px 8px 0px #7000ff;
}

.about-platform__main-img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-platform__overlay-badge {
    bottom: -15px;
    right: -15px;
    background: #7000ff;
    color: #ffffff;
    padding: 10px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    border: 2px solid #00f2ff;
    transform: rotate(-5deg);
    z-index: 2;
}

@media (max-width: 768px) {
    .about-platform__arcade-title {
        font-size: 1.1rem;
    }

    .about-platform__subtitle {
        font-size: 1.25rem;
    }

    .about-platform__visual-container {
        margin-top: 2rem;
    }

    .about-platform__overlay-badge {
        right: 10px;
        bottom: 10px;
        transform: none;
    }
}

/* ===== game_list ===== */
.starlight-vault {
    background-color: #05050a;
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
}

.starlight-vault__title {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.starlight-vault__subtitle {
    color: #a0a0c0;
    font-size: 1rem;
}

.starlight-vault__search-wrapper {
    position: relative;
}

.starlight-vault__search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00f2ff;
}

.starlight-vault .js-game-search {
    background: #12121f;
    border: 2px solid #00f2ff33;
    color: #ffffff;
    padding-left: 45px;
    border-radius: 0;
    height: 50px;
}

.starlight-vault .js-game-search::placeholder {
    color: #a0a0c0;
}

.starlight-vault .js-game-search:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px #00f2ff33;
    outline: none;
}

.starlight-vault__filter-btn {
    background: #12121f;
    border: 2px solid #00f2ff33;
    color: #a0a0c0;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: none;
    cursor: pointer;
}

.starlight-vault__filter-btn.active,
.starlight-vault__filter-btn:hover {
    background: #00f2ff;
    color: #05050a;
    border-color: #00f2ff;
    box-shadow: 0 0 15px #00f2ff;
}

.starlight-vault__card {
    background: #12121f;
    border: 4px solid #00f2ff33;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: none;
}

.starlight-vault__card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 20px #00f2ff33;
}

.starlight-vault__img-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 2px solid #00f2ff33;
}

.starlight-vault__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.starlight-vault__body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.starlight-vault__tag {
    font-size: 0.7rem;
    color: #7000ff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.starlight-vault__game-name {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 700;
}

.starlight-vault__link-btn {
    background: #00f2ff;
    color: #05050a;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    border-bottom: 4px solid #008fa0;
}

.starlight-vault__link-btn:hover {
    background: #00f2ff;
    color: #05050a;
    box-shadow: 0 0 15px #00f2ff;
}

.starlight-vault__link-btn:active {
    border-bottom: 0;
    margin-top: calc(auto + 4px);
}

.starlight-vault__btn-secondary {
    background: transparent;
    border: 2px solid #7000ff;
    color: #7000ff;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    display: inline-block;
    transition: none;
}

.starlight-vault__btn-secondary:hover {
    background: #7000ff;
    color: #ffffff;
    box-shadow: 0 0 15px #7000ff;
}

@media (max-width: 767px) {
    .starlight-vault__title {
        font-size: 1rem;
    }

    .starlight-vault__subtitle {
        font-size: 0.85rem;
    }
}

/* ===== features ===== */
.star-light-features {
    background-color: #05050a;
    background-image: linear-gradient(rgba(5, 5, 10, 0.9), rgba(5, 5, 10, 0.9)),
    url('../ui/graphics/media/neon-arcade-star-light-bg.png');
    background-position: center;
    background-size: cover;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    position: relative;
}

.star-light-features .features-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #00f2ff;
    text-transform: uppercase;
    line-height: 1.3;
}

.star-light-features .features-subtitle {
    color: #a0a0c0;
    max-width: 600px;
    font-size: 1.1rem;
}

.star-light-features .feature-card {
    background-color: #12121f;
    border: 4px solid #00f2ff33;
    box-shadow: 6px 6px 0px #000000;
    transition: none !important;
}

.star-light-features .feature-card:hover {
    background-color: #1a1a2e;
    border-color: #00f2ff;
    box-shadow: 6px 6px 0px #7000ff;
}

.star-light-features .feature-icon-wrapper {
    font-size: 2.5rem;
    color: #7000ff;
    line-height: 1;
}

.star-light-features .feature-card:hover .feature-icon-wrapper {
    color: #00f2ff;
}

.star-light-features .feature-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.star-light-features .feature-text {
    color: #a0a0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.star-light-features .btn-arcade-primary {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    color: #05050a;
    padding: 16px 32px;
    border: none;
    box-shadow: 4px 4px 0px #ffffff;
    transition: none !important;
}

.star-light-features .btn-arcade-primary:hover {
    box-shadow: 0 0 15px #00f2ff;
    color: #ffffff;
    transform: translate(2px, 2px);
}

@media (max-width: 768px) {
    .star-light-features .features-title {
        font-size: 1.1rem;
    }

    .star-light-features .feature-card {
        padding: 1.5rem !important;
    }
}

/* ===== latest_news ===== */
.starlight-news {
    background-color: #05050a;
    font-family: 'Exo 2', sans-serif;
    position: relative;
    overflow: hidden;
}

.starlight-news__heading {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 24px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 #7000ff;
    margin-bottom: 20px;
}

.starlight-news__divider {
    height: 4px;
    width: 80px;
    background: #00f2ff;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px #00f2ff;
}

.starlight-news__card {
    background: #12121f;
    border: 4px solid #00f2ff33;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    transition: border-color 0s, box-shadow 0s;
}

.starlight-news__card:hover {
    border-color: #00f2ff;
    box-shadow: 6px 6px 0 #7000ff;
}

.starlight-news__img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 4px solid #00f2ff33;
}

.starlight-news__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.starlight-news__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.starlight-news__meta {
    color: #a0a0c0;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.starlight-news__title {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.starlight-news__text {
    color: #a0a0c0;
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.starlight-news__btn {
    display: inline-block;
    background-color: #00f2ff;
    color: #05050a;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    padding: 12px 20px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 4px 4px 0 #7000ff;
    transition: transform 0s, box-shadow 0s;
}

.starlight-news__btn:hover {
    background-color: #ffffff;
    color: #05050a;
}

.starlight-news__btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #7000ff;
}

@media (max-width: 768px) {
    .starlight-news__heading {
        font-size: 18px;
    }

    .starlight-news__title {
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.slr-footer {
    background-color: #05050a;
    color: #a0a0c0;
    font-family: 'Exo 2', sans-serif;
    border-top: 4px solid #00f2ff33;
    position: relative;
}

.slr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f2ff 0%, #7000ff 100%);
    opacity: 0.6;
}

.slr-footer__logo {
    max-width: 50px;
    height: auto;
    image-rendering: pixelated;
}

.slr-footer__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.85rem;
    color: #00f2ff;
    text-transform: uppercase;
    line-height: 1.3;
}

.slr-footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a0c0;
}

.slr-footer__list li {
    margin-bottom: 0.75rem;
}

.slr-footer__list a,
.slr-footer__contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.1s ease-in-out, text-shadow 0.1s ease-in-out;
    font-size: 0.95rem;
}

.slr-footer__list a:hover,
.slr-footer__contact a:hover {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.slr-footer__contact p {
    display: flex;
    align-items: center;
    color: #a0a0c0;
}

.slr-footer__contact i {
    color: #7000ff;
    font-size: 1.1rem;
}

.slr-footer__bottom {
    border-color: #00f2ff33 !important;
}

.slr-footer__copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .slr-footer__contact p {
        justify-content: center;
    }

    .slr-footer__title {
        margin-top: 1.5rem;
    }
}

.slr-main-content {
    background-color: #05050a;
    min-height: 100vh;
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
}

.slr-hero-section {
    background: linear-gradient(rgba(5, 5, 10, 0.8), rgba(5, 5, 10, 0.8)),
    url('{{img-hero}}') center/cover no-repeat;
    border-bottom: 2px solid #00f2ff33;
    padding-top: 120px !important;
}

.slr-hero-title {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 2.2rem;
    text-shadow: 3px 3px #7000ff;
}

.slr-hero-subtitle {
    font-family: 'Exo 2', sans-serif;
    color: #a0a0c0;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.slr-search-wrapper .slr-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00f2ff;
}

.slr-search-input {
    background-color: #12121f;
    border: 2px solid #00f2ff33;
    color: #ffffff;
    padding: 12px 15px 12px 45px;
    border-radius: 0;
    transition: all 0.2s;
}

.slr-search-input:focus {
    background-color: #1a1a2e;
    border-color: #00f2ff;
    box-shadow: 0 0 10px #00f2ff33;
    color: #ffffff;
    outline: none;
}

.slr-search-input::placeholder {
    color: #4a4a6a;
}

.slr-filter-group {
    border: 2px solid #00f2ff33;
    padding: 4px;
}

.slr-filter-btn {
    border: none;
    background: transparent;
    color: #a0a0c0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 20px;
    transition: all 0.2s;
    border-radius: 0;
}

.slr-filter-btn:hover {
    color: #00f2ff;
}

.slr-filter-btn.active {
    background-color: #00f2ff;
    color: #05050a;
}

.slr-news-card {
    background-color: #12121f;
    border: 2px solid #00f2ff33;
    transition: transform 0.1s, border-color 0.1s;
}

.slr-news-card:hover {
    transform: translateY(-5px);
    border-color: #00f2ff;
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1);
}

.slr-news-card__img-container {
    height: 200px;
    overflow: hidden;
    border-bottom: 2px solid #00f2ff33;
}

.slr-news-card__img-container img {
    object-fit: cover;
    transition: transform 0.2s;
}

.slr-news-card:hover .slr-news-card__img-container img {
    transform: scale(1.05);
}

.slr-news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slr-badge {
    background-color: #7000ff;
    color: #ffffff;
    border-radius: 0;
    padding: 5px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.slr-news-card__author {
    color: #00f2ff;
    font-size: 0.85rem;
    font-weight: 700;
}

.slr-news-card__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.4;
}

.slr-news-card__excerpt {
    color: #a0a0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.slr-btn-primary {
    background-color: #00f2ff;
    color: #05050a;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 12px;
    transition: all 0.2s;
    border-radius: 0;
}

.slr-btn-primary:hover {
    background-color: #7000ff;
    color: #ffffff;
    box-shadow: 0 0 15px #00f2ff;
}

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

    .slr-filter-group {
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    .slr-filter-btn {
        flex: 1;
        white-space: nowrap;
    }
}


/* ===== PAGE: about ===== */
.slr-about-story-section, .slr-mission-section { background-color: #05050a; color: #ffffff; font-family: 'Exo 2', sans-serif; overflow: hidden; }
.slr-pixel-heading { font-family: 'Press Start 2P', cursive; color: #00f2ff; font-size: 1.5rem; line-height: 1.4; text-transform: uppercase; }
.slr-h3-title { font-weight: 700; color: #00f2ff; }
.slr-text-primary { color: #ffffff; line-height: 1.6; }
.slr-text-secondary { color: #a0a0c0; line-height: 1.6; }
.slr-pixel-border { border: 4px solid #00f2ff33; box-shadow: 4px 4px 0px #7000ff; }
.slr-stat-card { background: #12121f; border-left: 4px solid #00f2ff; }
.slr-stat-value { font-family: 'Press Start 2P', cursive; color: #00f2ff; font-size: 1.25rem; }
.slr-stat-label { font-size: 0.8rem; color: #a0a0c0; text-transform: uppercase; }
.slr-mission-card { background: #12121f; border: 2px solid #00f2ff33; transition: none; }
.slr-mission-card:hover { border-color: #00f2ff; background: #1a1a2e; }
.slr-mission-icon { font-size: 2.5rem; color: #7000ff; text-shadow: 0 0 10px #7000ff; }
.slr-pixel-btn { background: #00f2ff; color: #05050a; font-family: 'Press Start 2P', cursive; font-size: 0.9rem; padding: 1rem 2rem; border: none; box-shadow: 4px 4px 0px #7000ff; cursor: pointer; transition: none; }
.slr-pixel-btn:hover { background: #ffffff; color: #05050a; box-shadow: 2px 2px 0px #7000ff; transform: translate(2px, 2px); }
@media (max-width: 767.98px) {
  .slr-pixel-heading { font-size: 1.1rem; }
  .slr-h3-title { font-size: 1.1rem; }
  .slr-pixel-btn { font-size: 0.7rem; width: 100%; }
}

/* ===== PAGE: achievements ===== */
.slr-achievements-page {
  background-color: #05050a;
  color: #ffffff;
  font-family: 'Exo 2', sans-serif;
}

.slr-achievements-page .slr-title {
  font-family: 'Press Start 2P', cursive;
  color: #00f2ff;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
  font-size: 2.5rem;
}

.slr-achievements-page .slr-subtitle {
  color: #a0a0c0;
  line-height: 1.6;
}

.slr-achievements-page .slr-section-title {
  font-family: 'Press Start 2P', cursive;
  color: #7000ff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.slr-achievements-page .slr-tab-btn {
  background: transparent;
  border: 2px solid #00f2ff33;
  color: #00f2ff;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-family: 'Press Start 2P', cursive;
  cursor: pointer;
  transition: all 0.2s steps(1);
}

.slr-achievements-page .slr-tab-btn.active {
  background: #00f2ff;
  color: #05050a;
  border-color: #00f2ff;
  box-shadow: 0 0 15px #00f2ff;
}

.slr-achievements-page .slr-tab-btn:hover:not(.active) {
  border-color: #00f2ff;
  color: #00f2ff;
}

.slr-achievements-page .slr-table-container {
  border: 4px solid #00f2ff33;
  background: #12121f;
  padding: 0;
}

.slr-achievements-page .table {
  margin-bottom: 0;
}

.slr-achievements-page .table thead th {
  background: #00f2ff1a;
  border-bottom: 2px solid #00f2ff33;
  color: #00f2ff;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  padding: 20px 15px;
}

.slr-achievements-page .slr-table-row {
  border-bottom: 1px solid #00f2ff11;
  transition: background 0.1s;
}

.slr-achievements-page .slr-table-row:hover {
  background: rgba(0, 242, 255, 0.05) !important;
}

.slr-achievements-page .slr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00f2ff;
  object-fit: cover;
}

.slr-achievements-page .slr-rank {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.9rem;
  color: #a0a0c0;
}

.slr-achievements-page .rank-1 { color: #ffd700; text-shadow: 0 0 5px #ffd700; }
.slr-achievements-page .rank-2 { color: #c0c0c0; text-shadow: 0 0 5px #c0c0c0; }
.slr-achievements-page .rank-3 { color: #cd7f32; text-shadow: 0 0 5px #cd7f32; }

.slr-achievements-page .slr-quest-card {
  background: #12121f;
  border: 2px solid #7000ff33;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.slr-achievements-page .slr-quest-card:hover {
  border-color: #7000ff;
  box-shadow: inset 0 0 20px #7000ff1a;
}

.slr-achievements-page .slr-quest-icon-box {
  width: 60px;
  height: 60px;
  background: #00f2ff11;
  border: 2px solid #00f2ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slr-achievements-page .slr-quest-icon-box img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
}

.slr-achievements-page .slr-quest-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.15rem;
}

.slr-achievements-page .slr-quest-desc {
  color: #a0a0c0;
  font-size: 0.9rem;
  margin-top: 15px;
}

.slr-achievements-page .shadow-glow {
  box-shadow: 0 0 10px #00f2ff;
}

.slr-achievements-page .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 242, 255, 0.25);
  border-color: #00f2ff;
}

@media (max-width: 768px) {
  .slr-achievements-page .slr-title { font-size: 1.5rem; }
  .slr-achievements-page .slr-section-title { font-size: 1rem; }
  .slr-achievements-page .table thead th { font-size: 0.6rem; }
  .slr-achievements-page .slr-rank { font-size: 0.7rem; }
}

/* ===== PAGE: contact ===== */
.starlight-contact-info, .starlight-complaints {
  background-color: #05050a;
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
}

.starlight-info-card, .starlight-complaints-card {
  background-color: #12121f;
  border: 2px solid #00f2ff33;
  position: relative;
  box-shadow: 4px 4px 0px #7000ff;
}

.starlight-pixel-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.25rem;
  color: #00f2ff;
  line-height: 1.4;
  text-transform: uppercase;
}

.starlight-info-text {
  color: #a0a0c0;
  font-size: 1rem;
  line-height: 1.6;
}

.starlight-icon-box {
  width: 40px;
  height: 40px;
  background-color: #00f2ff;
  color: #05050a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

.starlight-label {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.6rem;
  color: #7000ff;
  margin-bottom: 5px;
}

.starlight-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.1s steps(1);
}

a.starlight-value:hover {
  color: #00f2ff;
}

.starlight-map-wrapper {
  border: 2px solid #00f2ff33;
  box-shadow: 4px 4px 0px #7000ff;
  overflow: hidden;
  background-color: #12121f;
}

.starlight-map-wrapper iframe {
  filter: grayscale(1) invert(0.9) hue-rotate(180deg);
}

.starlight-warning-icon {
  font-size: 3rem;
  color: #7000ff;
  text-shadow: 0 0 10px #7000ff;
}

.starlight-btn-primary {
  font-family: 'Press Start 2P', cursive;
  background-color: #00f2ff;
  color: #05050a;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-block;
  position: relative;
  border: none;
  box-shadow: 4px 4px 0px #7000ff;
  transition: all 0.1s steps(1);
}

.starlight-btn-primary:hover {
  background-color: #ffffff;
  box-shadow: 2px 2px 0px #7000ff;
  transform: translate(2px, 2px);
  color: #05050a;
}

@media (max-width: 768px) {
  .starlight-pixel-title {
    font-size: 1rem;
  }
  .starlight-btn-primary {
    font-size: 0.7rem;
    padding: 12px 20px;
  }
  .starlight-map-wrapper iframe {
    min-height: 300px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  background-color: #05050a;
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.privacy-content-section .privacy-card {
  background-color: #12121f;
  border: 4px solid #00f2ff33;
  box-shadow: 4px 4px 0px #7000ff, 8px 8px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}

.privacy-content-section .privacy-h1 {
  font-family: 'Press Start 2P', cursive;
  color: #00f2ff;
  text-shadow: 0 0 10px #00f2ff;
  line-height: 1.3;
  font-size: 1.8rem;
}

.privacy-content-section .privacy-subtitle {
  color: #7000ff;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  margin-top: 10px;
}

.privacy-content-section .privacy-h2 {
  font-family: 'Press Start 2P', cursive;
  color: #00f2ff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00f2ff33;
  display: flex;
  align-items: center;
}

.privacy-content-section .privacy-h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

.privacy-content-section .privacy-shield-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #00f2ff);
}

.privacy-content-section .privacy-body-text p {
  line-height: 1.8;
  color: #a0a0c0;
  margin-bottom: 1.5rem;
}

.privacy-content-section .privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.privacy-content-section .privacy-list li {
  color: #a0a0c0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.privacy-content-section .privacy-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #7000ff;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  top: 5px;
}

.privacy-content-section .btn-toc {
  background: #12121f;
  border: 2px solid #7000ff;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.1s step-end;
  cursor: pointer;
}

.privacy-content-section .btn-toc:hover {
  background: #7000ff;
  box-shadow: 0 0 10px #7000ff;
}

.privacy-content-section .privacy-footer-note {
  border: 2px dashed #00f2ff33;
  background: rgba(0, 242, 255, 0.05);
}

@media (max-width: 767.98px) {
  .privacy-content-section .privacy-h1 {
    font-size: 1.1rem !important;
  }
  .privacy-content-section .privacy-h2 {
    font-size: 0.85rem !important;
  }
  .privacy-content-section .privacy-h3 {
    font-size: 0.9rem !important;
  }
  .privacy-content-section .privacy-subtitle {
    font-size: 0.6rem !important;
  }
  .privacy-content-section .privacy-card {
    padding: 1.5rem !important;
    border-width: 2px;
  }
}

/* ===== PAGE: terms ===== */
.terms-page-section { background-color: #05050a; font-family: 'Exo 2', sans-serif; color: #ffffff; }
.terms-page-section .legal-container { background-color: #12121f; border: 4px solid #00f2ff33; position: relative; box-shadow: 8px 8px 0px #7000ff; }
.terms-page-section .pixel-title { font-family: 'Press Start 2P', cursive; color: #00f2ff; text-transform: uppercase; line-height: 1.4; font-size: 1.5rem; }
.terms-page-section h3 { font-family: 'Press Start 2P', cursive; color: #7000ff; font-size: 1rem; margin-bottom: 1.5rem; text-transform: uppercase; border-left: 4px solid #00f2ff; padding-left: 15px; }
.terms-page-section p, .terms-page-section li { color: #a0a0c0; line-height: 1.8; margin-bottom: 1rem; }
.terms-page-section ul { list-style: none; padding-left: 0; }
.terms-page-section li::before { content: '>'; color: #00f2ff; margin-right: 10px; font-family: 'Press Start 2P', cursive; font-size: 0.8rem; }
.terms-page-section .btn-pixel { background: #00f2ff; color: #05050a; font-family: 'Press Start 2P', cursive; font-size: 0.7rem; border: none; padding: 12px 20px; transition: none; border-bottom: 4px solid #00a8b3; text-transform: uppercase; cursor: pointer; }
.terms-page-section .btn-pixel:hover { background: #7000ff; color: #ffffff; border-bottom-color: #4a00aa; }
.terms-page-section .btn-pixel:active { transform: translateY(2px); border-bottom-width: 2px; }
.terms-page-section .contact-note { border-top: 2px dashed #00f2ff33; background: rgba(112, 0, 255, 0.05); }
@media (max-width: 768px) {
  .terms-page-section .pixel-title { font-size: 1.1rem; }
  .terms-page-section .legal-container { padding: 20px !important; }
  .terms-page-section .btn-pixel { width: 100%; }
}

/* ===== PAGE: disclaimer ===== */
.slr-disclaimer-section {
  background-color: #05050a;
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
  min-height: 80vh;
}

.slr-disclaimer-card {
  background-color: #12121f;
  border: 4px solid #00f2ff33;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slr-disclaimer-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #00f2ff33;
  pointer-events: none;
}

.slr-title {
  font-family: 'Press Start 2P', cursive;
  color: #00f2ff;
  font-size: 1.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.slr-subtitle {
  color: #a0a0c0;
  font-size: 1rem;
  font-weight: 600;
}

.slr-section-title {
  font-family: 'Press Start 2P', cursive;
  color: #7000ff;
  font-size: 0.9rem;
  margin-top: 2rem;
  border-left: 4px solid #00f2ff;
  padding-left: 15px;
}

.slr-text {
  color: #a0a0c0;
  line-height: 1.8;
  font-size: 1rem;
}

.slr-info-box {
  background-color: rgba(112, 0, 255, 0.1);
  border: 2px dashed #7000ff;
  border-radius: 4px;
}

.slr-info-box h3 {
  font-family: 'Press Start 2P', cursive;
  color: #00f2ff;
  font-size: 0.8rem;
}

.slr-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00f2ff;
  color: #05050a !important;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  text-decoration: none;
  border: 4px solid #00f2ff;
  transition: none;
  position: relative;
  top: 0;
  box-shadow: 4px 4px 0px #7000ff;
}

.slr-btn-primary:hover {
  top: 2px;
  left: 2px;
  box-shadow: 2px 2px 0px #7000ff;
  background-color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .slr-title {
    font-size: 1.1rem;
  }
  .slr-section-title {
    font-size: 0.75rem;
  }
  .slr-text {
    font-size: 0.9rem;
  }
  .slr-btn-primary {
    width: 100%;
  }
}

.comment-main {
    background-color: #12121f;
    border: 4px solid #00f2ff33;
    position: relative;
    box-shadow: 6px 6px 0px #7000ff;
}

.comment-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 3px solid #00f2ff;
    padding: 2px;
    background: #05050a;
}

.comment-username {
    font-family: 'Press Start 2P', cursive;
    color: #00f2ff;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.comment-badge {
    background: #7000ff;
    color: #ffffff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    padding: 4px 8px;
    border: 1px solid #00f2ff;
}

.comment-date {
    color: #a0a0c0;
    font-size: 0.75rem;
    font-family: 'Exo 2', sans-serif;
}

.comment-body {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-arcade {
    background: #05050a;
    color: #00f2ff;
    border: 2px solid #00f2ff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    padding: 8px 12px;
    transition: none;
    cursor: pointer;
}

.btn-arcade:hover {
    background: #00f2ff;
    color: #05050a;
    box-shadow: 0 0 15px #00f2ff;
}

.btn-like:hover {
    border-color: #7000ff;
    box-shadow: 0 0 15px #7000ff;
}

.comment-reply {
    background-color: #0a0a14;
    border: 2px solid #7000ff66;
    border-left: 6px solid #7000ff;
    position: relative;
}

.reply-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid #7000ff;
    padding: 1px;
    background: #05050a;
}

.reply-username {
    font-family: 'Press Start 2P', cursive;
    color: #7000ff;
    font-size: 0.7rem;
}

.reply-status {
    color: #00f2ff;
    font-size: 0.6rem;
    font-family: 'Press Start 2P', cursive;
}

.reply-body {
    color: #a0a0c0;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-arcade-sm {
    background: transparent;
    color: #a0a0c0;
    border: 1px solid #a0a0c0;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    padding: 4px 8px;
    transition: none;
}

.btn-arcade-sm:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: #7000ff;
}


/* ===== PAGE TEMPLATE: games ===== */
.slr-detail-page {
    background-color: #05050a;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
}

.slr-iframe-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    background: #000;
    border-bottom: 4px solid #00f2ff33;
}

@media (min-width: 992px) {
    .slr-iframe-wrapper {
        height: 600px;
    }
}

.slr-iframe-element {
    width: 100%;
    height: 100%;
    border: none;
}

.slr-fullscreen-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.btn-pixel-exit {
    background: #7000ff;
    color: #fff;
    border: 2px solid #00f2ff;
    padding: 8px 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    cursor: pointer;
}

.slr-detail-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #00f2ff;
    text-shadow: 2px 2px #7000ff;
    margin-bottom: 1.5rem;
}

.slr-meta-bar {
    border-color: rgba(0, 242, 255, 0.2) !important;
}

.slr-meta-item {
    font-size: 0.85rem;
    color: #a0a0c0;
    text-transform: uppercase;
}

.slr-body-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.slr-body-content h2,
.slr-body-content h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #00f2ff;
    margin: 2rem 0 1rem;
}

.slr-body-content p {
    margin-bottom: 1.25rem;
}

.border-pixel-neon {
    border: 2px solid #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.btn-share {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12121f;
    color: #00f2ff;
    border: 2px solid #00f2ff;
    transition: 0.1s;
    text-decoration: none;
}

.btn-share:hover {
    background: #00f2ff;
    color: #05050a;
    box-shadow: 0 0 10px #00f2ff;
}

.slr-section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #7000ff;
    border-left: 4px solid #00f2ff;
    padding-left: 15px;
}

.slr-input {
    background-color: #12121f;
    border: 2px solid #00f2ff33;
    color: #fff;
    border-radius: 0;
    padding: 12px;
}

.slr-input:focus {
    background-color: #1a1a2e;
    border-color: #00f2ff;
    color: #fff;
    box-shadow: 0 0 8px #00f2ff;
}

.slr-input::placeholder,
.slr-comment-form,
.slr-comment-form h4,
.slr-comment-form label,
.slr-comment-form .form-label {
    color: #fff;
}

.btn-pixel-neon {
    background: #00f2ff;
    color: #05050a;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    border: none;
    padding: 15px;
    transition: 0.1s;
}

.btn-pixel-neon:hover {
    background: #7000ff;
    color: #fff;
    box-shadow: 0 0 15px #7000ff;
}

.slr-sidebar-widget {
    background: #12121f;
    border: 2px solid #00f2ff33;
    padding: 20px;
}

.slr-widget-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: #00f2ff;
    margin-bottom: 1.5rem;
}

.slr-side-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #00f2ff;
}

.slr-related-item a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.1s;
}

.slr-related-item a:hover h6 {
    color: #00f2ff;
}

.slr-related-item h6 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.slr-related-item small {
    color: #a0a0c0;
}

.slr-promo-card {
    background: linear-gradient(135deg, #12121f 0%, #05050a 100%);
    border: 2px dashed #7000ff;
}

.btn-pixel-outline {
    background: transparent;
    border: 2px solid #7000ff;
    color: #7000ff;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn-pixel-outline:hover {
    background: #7000ff;
    color: #fff;
}

.comment-main,
.comment-reply {
    background: #12121f;
    border: 2px solid #00f2ff33;
}

.comment-avatar,
.reply-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00f2ff;
}

.comment-username {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: #00f2ff;
}

.comment-badge,
.reply-status {
    font-size: 10px;
    background: #7000ff;
    color: #fff;
    padding: 2px 6px;
}

.comment-meta {
    font-size: 0.75rem;
    color: #a0a0c0;
}

.btn-arcade {
    background: transparent;
    border: 1px solid #00f2ff33;
    color: #00f2ff;
    font-size: 0.8rem;
    padding: 4px 10px;
}

.btn-arcade.active {
    background: #00f2ff;
    color: #05050a;
}

.breadcrumb-item a {
    color: #00f2ff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff !important;
}

/* ===== PAGE TEMPLATE: news ===== */
.slr-detail-page {
    background-color: #05050a;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
}

.slr-news-page .slr-detail-page {
    padding-top: var(--header-offset);
}

.slr-detail-page .slr-game-section {
    margin-top: 0 !important;
    padding-top: var(--header-offset) !important;
}

.slr-category-hero {
    padding-top: calc(var(--header-offset) + 32px) !important;
}

.slr-hero-section {
    padding-top: calc(var(--header-offset) + 32px) !important;
}

.slr-iframe-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    background: #000;
    border-bottom: 4px solid #00f2ff33;
}

@media (min-width: 992px) {
    .slr-iframe-wrapper {
        height: 600px;
    }
}

.slr-iframe-element {
    width: 100%;
    height: 100%;
    border: none;
}

.slr-fullscreen-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.btn-pixel-exit {
    background: #7000ff;
    color: #fff;
    border: 2px solid #00f2ff;
    padding: 8px 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    cursor: pointer;
}

.slr-detail-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #00f2ff;
    text-shadow: 2px 2px #7000ff;
    margin-bottom: 1.5rem;
}

.slr-meta-bar {
    border-color: rgba(0, 242, 255, 0.2) !important;
}

.slr-meta-item {
    font-size: 0.85rem;
    color: #a0a0c0;
    text-transform: uppercase;
}

.slr-body-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.slr-body-content h2,
.slr-body-content h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #00f2ff;
    margin: 2rem 0 1rem;
}

.slr-body-content p {
    margin-bottom: 1.25rem;
}

.border-pixel-neon {
    border: 2px solid #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.btn-share {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12121f;
    color: #00f2ff;
    border: 2px solid #00f2ff;
    transition: 0.1s;
    text-decoration: none;
}

.btn-share:hover {
    background: #00f2ff;
    color: #05050a;
    box-shadow: 0 0 10px #00f2ff;
}

.slr-section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #7000ff;
    border-left: 4px solid #00f2ff;
    padding-left: 15px;
}

.slr-input {
    background-color: #12121f;
    border: 2px solid #00f2ff33;
    color: #fff;
    border-radius: 0;
    padding: 12px;
}

.slr-input:focus {
    background-color: #1a1a2e;
    border-color: #00f2ff;
    color: #fff;
    box-shadow: 0 0 8px #00f2ff;
}

.btn-pixel-neon {
    background: #00f2ff;
    color: #05050a;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    border: none;
    padding: 15px;
    transition: 0.1s;
}

.btn-pixel-neon:hover {
    background: #7000ff;
    color: #fff;
    box-shadow: 0 0 15px #7000ff;
}

.slr-sidebar-widget {
    background: #12121f;
    border: 2px solid #00f2ff33;
    padding: 20px;
}

.slr-widget-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: #00f2ff;
    margin-bottom: 1.5rem;
}

.slr-side-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #00f2ff;
}

.slr-related-item a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.1s;
}

.slr-related-item a:hover h6 {
    color: #00f2ff;
}

.slr-related-item h6 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.slr-related-item small {
    color: #a0a0c0;
}

.slr-promo-card {
    background: linear-gradient(135deg, #12121f 0%, #05050a 100%);
    border: 2px dashed #7000ff;
}

.btn-pixel-outline {
    background: transparent;
    border: 2px solid #7000ff;
    color: #7000ff;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn-pixel-outline:hover {
    background: #7000ff;
    color: #fff;
}

.comment-main,
.comment-reply {
    background: #12121f;
    border: 2px solid #00f2ff33;
}

.comment-avatar,
.reply-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00f2ff;
}

.comment-username {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: #00f2ff;
}

.comment-badge,
.reply-status {
    font-size: 10px;
    background: #7000ff;
    color: #fff;
    padding: 2px 6px;
}

.comment-meta {
    font-size: 0.75rem;
    color: #a0a0c0;
}

.btn-arcade {
    background: transparent;
    border: 1px solid #00f2ff33;
    color: #00f2ff;
    font-size: 0.8rem;
    padding: 4px 10px;
}

.btn-arcade.active {
    background: #00f2ff;
    color: #05050a;
}

.breadcrumb-item a {
    color: #00f2ff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff !important;
}
