:root {
    --neon-bg-main: #0D0221;
    --neon-bg-surface: #1A0B2E;
    --neon-accent-primary: #BC13FE;
    --neon-accent-secondary: #00F5FF;
    --neon-accent-tertiary: #FF00E5;
    --neon-text-primary: #FFFFFF;
    --neon-text-secondary: #B0A1C7;
    --neon-text-muted: #7A6B91;
    --neon-glow: rgba(188, 19, 254, 0.5);
    --neon-border-radius: 4px;
}

body {
    background-color: var(--neon-bg-main);
    color: var(--neon-text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neon-text-primary);
}

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

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

.neon-cyber-theme {
    overflow-x: hidden;
}

.btn-primary {
    background-color: var(--neon-accent-primary) !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--neon-border-radius);
    border: none;
}

.btn-outline-secondary {
    border: 2px solid var(--neon-accent-secondary) !important;
    color: var(--neon-accent-secondary) !important;
    background: transparent !important;
}

.btn-outline-secondary:hover {
    background-color: var(--neon-accent-secondary) !important;
    color: var(--neon-bg-main) !important;
}

* {
    box-sizing: border-box;
}

/* ===== header ===== */
.neon-vault-header {
    background-color: #1A0B2E !important;
    border-bottom: 1px solid rgba(188, 19, 254, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1050;
    transition: all 0.3s ease;
}

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

.neon-vault-header .navbar-brand {
    text-decoration: none;
}

.neon-vault-header .navbar-brand img {
    max-width: 40px;
    height: 40px;
    object-fit: contain;
}

.neon-vault-header .navbar-brand span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
}

.neon-vault-header .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #FFFFFF !important;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.neon-vault-header .nav-link:hover {
    color: #00F5FF !important;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

.neon-vault-header .navbar-toggler {
    border: 1px solid #BC13FE;
    color: #BC13FE;
    padding: 0.5rem;
    transition: background-color 0.3s ease;
}

.neon-vault-header .navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

.neon-vault-header .btn-sitemap {
    background-color: #BC13FE;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.neon-vault-header .btn-sitemap:hover {
    background-color: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

@media (max-width: 991.98px) {
    .neon-vault-header .navbar-collapse {
        background-color: #1A0B2E;
        padding: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(188, 19, 254, 0.2);
        border-radius: 0 0 8px 8px;
    }

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

    .neon-vault-header .navbar-cta {
        margin-top: 1.5rem;
        width: 100%;
    }

    .neon-vault-header .btn-sitemap {
        width: 100%;
        text-align: center;
    }
}

/* ===== hero ===== */
.neon-hero-vault {
    min-height: 85vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: #0D0221;
    position: relative;
}

.neon-hero-vault__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9) 0%, rgba(13, 2, 33, 0.95) 100%);
    z-index: 1;
}

.neon-hero-vault .container {
    z-index: 2;
}

.neon-hero-vault__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.6);
}

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

@media (min-width: 992px) {
    .neon-hero-vault__subtitle {
        margin: 0;
    }
}

.neon-hero-vault__btn {
    font-family: 'Inter', sans-serif;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.neon-hero-vault__btn--primary {
    background-color: #BC13FE;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    border: 2px solid #BC13FE;
}

.neon-hero-vault__btn--primary:hover {
    background-color: #00F5FF;
    border-color: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.neon-hero-vault__btn--outline {
    background-color: transparent;
    border: 2px solid #00F5FF;
    color: #00F5FF;
}

.neon-hero-vault__btn--outline:hover {
    background-color: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.neon-hero-vault__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 10px;
    background: rgba(26, 11, 46, 0.5);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
}

.neon-hero-vault__main-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* ===== about ===== */
.neon-about-archive {
    padding: clamp(3rem, 10vw, 6rem) 0;
    background-color: #0D0221;
    position: relative;
    overflow: hidden;
}

.neon-about-archive .neon-about-title {
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.neon-about-archive .neon-about-text {
    color: #B0A1C7;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.neon-about-archive .stat-item {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.neon-about-archive .stat-item:hover {
    border-color: #00F5FF;
}

.neon-about-archive .stat-number {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #BC13FE;
}

.neon-about-archive .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7A6B91;
    letter-spacing: 1px;
}

.neon-about-archive .neon-about-btn {
    background: #BC13FE;
    color: #FFFFFF;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.neon-about-archive .neon-about-btn:hover {
    background: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.neon-about-archive .neon-about-visual-wrapper {
    position: relative;
    padding: 0;
}

.neon-about-archive .neon-about-image-container {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(188, 19, 254, 0.4);
    border-radius: 4px;
    overflow: hidden;
}

.neon-about-archive .neon-about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.neon-about-archive .neon-about-glow-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #00F5FF;
    border-radius: 4px;
    z-index: 1;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .neon-about-archive .neon-about-title {
        font-size: 1.75rem;
    }

    .neon-about-archive .neon-about-img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .neon-about-archive .neon-about-title {
        font-size: 1.125rem;
    }

    .neon-about-archive .neon-about-text {
        font-size: 0.875rem;
    }
}

/* ===== featured ===== */
.featured-hall-of-fame {
    background-color: #0D0221;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.featured-hall-of-fame__title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #BC13FE;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 2rem;
}

.featured-hall-of-fame__subtitle {
    color: #B0A1C7;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.featured-hall-of-fame__card {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.featured-hall-of-fame__card:hover {
    border-color: #00F5FF;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.featured-hall-of-fame__img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.featured-hall-of-fame__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-hall-of-fame__card:hover .featured-hall-of-fame__img {
    transform: scale(1.05);
}

.featured-hall-of-fame__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-hall-of-fame__card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.featured-hall-of-fame__card-text {
    font-family: 'Inter', sans-serif;
    color: #B0A1C7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-hall-of-fame__footer {
    margin-top: auto;
}

.featured-hall-of-fame__btn {
    display: inline-block;
    background-color: #BC13FE;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.featured-hall-of-fame__btn:hover {
    background-color: #00F5FF;
    color: #0D0221;
}

.featured-hall-of-fame__btn-outline {
    display: inline-block;
    border: 2px solid #00F5FF;
    color: #00F5FF;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-hall-of-fame__btn-outline:hover {
    background-color: #00F5FF;
    color: #0D0221;
}

@media (max-width: 767px) {
    .featured-hall-of-fame__title {
        font-size: 1.5rem;
    }

    .featured-hall-of-fame__card-title {
        font-size: 1.1rem;
    }
}

/* ===== challenge_teaser ===== */
.pixel-challenge-teaser {
    background-color: #0D0221;
    position: relative;
    overflow: hidden;
}

.pixel-challenge-teaser .challenge-content {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.pixel-challenge-teaser .challenge-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #00F5FF;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.pixel-challenge-teaser .challenge-text {
    font-family: 'Inter', sans-serif;
    color: #B0A1C7;
    font-size: 1rem;
    line-height: 1.6;
}

.pixel-challenge-teaser .btn-challenge-primary {
    background-color: #BC13FE;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.pixel-challenge-teaser .btn-challenge-primary:hover {
    background-color: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.pixel-challenge-teaser .challenge-image-container {
    position: relative;
    border: 2px solid #BC13FE;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.4);
}

.pixel-challenge-teaser .challenge-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .pixel-challenge-teaser .challenge-title {
        font-size: 1.25rem;
    }

    .pixel-challenge-teaser .challenge-hero-img {
        height: 250px;
    }
}

/* ===== partnership ===== */
.partnership-section {
    background-color: #0D0221;
    padding: clamp(3rem, 10vw, 6rem) 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.partnership-section .partnership-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #BC13FE;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.partnership-section .partnership-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #B0A1C7;
    margin-bottom: 2rem;
}

.partnership-section .partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partnership-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #00F5FF;
}

.partnership-section .benefit-item i {
    width: 20px;
    text-align: center;
}

.partnership-section .partnership-card {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.2);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.1);
}

.partnership-section .form-label {
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.partnership-section .form-control {
    background-color: #0D0221;
    border: none;
    border-bottom: 1px solid #7A6B91;
    border-radius: 0;
    color: #FFFFFF;
    padding: 0.75rem 0;
    transition: border-color 0.3s ease;
}

.partnership-section .form-control,
.neon-subscribe-block .neon-input {
    padding-left: 18px !important;
}

.partnership-section .form-control:focus {
    background-color: #0D0221;
    color: #FFFFFF;
    border-bottom-color: #BC13FE;
    box-shadow: none;
    outline: none;
}

.partnership-section .form-control::placeholder {
    color: #7A6B91;
}

.partnership-section .btn-partnership-submit {
    width: 100%;
    background-color: #BC13FE;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.partnership-section .btn-partnership-submit:hover {
    background-color: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

@media (max-width: 767px) {
    .partnership-section .partnership-title {
        font-size: 1.5rem;
    }

    .partnership-section .partnership-card {
        padding: 1.5rem;
    }
}

/* ===== newsletter ===== */
.neon-subscribe-block {
    padding: clamp(3rem, 10vw, 6rem) 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.neon-subscribe-block .neon-subscribe-card {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(188, 19, 254, 0.1);
}

.neon-subscribe-block .neon-subscribe-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
}

.neon-subscribe-block .neon-subscribe-text {
    font-family: 'Inter', sans-serif;
    color: #B0A1C7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.neon-subscribe-block .neon-input {
    background: #0D0221 !important;
    border: 1px solid rgba(0, 245, 255, 0.3) !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.neon-subscribe-block .neon-input:focus {
    border-color: #00F5FF !important;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2) !important;
}

.neon-subscribe-block .neon-input::placeholder {
    color: #7A6B91 !important;
    opacity: 1;
}

.neon-subscribe-block .neon-btn-primary {
    background: #BC13FE;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-subscribe-block .neon-btn-primary:hover {
    background: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.neon-subscribe-block .neon-error-message {
    color: #FF3131;
    font-size: 0.875rem;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767px) {
    .neon-subscribe-block .neon-subscribe-title {
        font-size: 1.5rem;
    }

    .neon-subscribe-block .neon-subscribe-text {
        font-size: 0.95rem;
    }

    .neon-subscribe-block .neon-subscribe-card {
        padding: 2rem 1rem;
    }
}

/* ===== footer ===== */
.neoncrown-footer {
    background-color: #0D0221;
    color: #FFFFFF;
    padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
    border-top: 1px solid rgba(188, 19, 254, 0.3);
    font-family: 'Inter', sans-serif;
}

.neoncrown-footer .footer-logo {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(188, 19, 254, 0.5));
}

.neoncrown-footer .footer-description {
    color: #B0A1C7;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
}

.neoncrown-footer .footer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #BC13FE;
    margin-bottom: 1.5rem;
}

.neoncrown-footer .footer-links,
.neoncrown-footer .footer-contact-list,
.neoncrown-footer .footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neoncrown-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.neoncrown-footer .footer-links a,
.neoncrown-footer .footer-legal-links a {
    color: #B0A1C7;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 0.9375rem;
}

.neoncrown-footer .footer-links a:hover,
.neoncrown-footer .footer-legal-links a:hover {
    color: #00F5FF;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

.neoncrown-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #B0A1C7;
    font-size: 0.9375rem;
}

.neoncrown-footer .footer-contact-list i {
    color: #BC13FE;
    margin-right: 12px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.neoncrown-footer .footer-contact-list a {
    color: #B0A1C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.neoncrown-footer .footer-contact-list a:hover {
    color: #00F5FF;
}

.neoncrown-footer .footer-divider {
    border-top: 1px solid rgba(188, 19, 254, 0.1);
    margin: 2rem 0 1rem;
}

.neoncrown-footer .footer-copyright {
    color: #7A6B91;
    font-size: 0.875rem;
}

.neoncrown-footer .footer-legal-links li {
    margin-left: 1.5rem;
}

@media (max-width: 767.98px) {
    .neoncrown-footer .footer-legal-links {
        justify-content: flex-start !important;
        margin-top: 1rem;
    }

    .neoncrown-footer .footer-legal-links li {
        margin-left: 0;
        margin-right: 1.25rem;
        margin-bottom: 0.5rem;
    }

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

/* ===== PAGE: privacy ===== */
.policy-layout-block { background: #0D0221; padding: 60px 0; min-height: 100vh; }.policy-text-container { max-width: 900px; margin: 0 auto; padding: 40px; background: #1A0B2E; border: 1px solid rgba(188, 19, 254, 0.2); border-radius: 4px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }.policy-text-container h1 { font-family: 'Rajdhani', sans-serif; color: #FFFFFF; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 10px; border-bottom: 2px solid #BC13FE; display: inline-block; }.policy-text-container .update-date { font-family: 'Inter', sans-serif; color: #00F5FF; font-size: 0.9rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }.policy-text-container h2 { font-family: 'Rajdhani', sans-serif; color: #BC13FE; font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; text-transform: uppercase; display: flex; align-items: center; }.policy-text-container h2::before { content: ''; width: 4px; height: 20px; background: #00F5FF; margin-right: 15px; display: inline-block; }.policy-text-container p { font-family: 'Inter', sans-serif; color: #B0A1C7; line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }.policy-text-container ul { list-style: none; padding-left: 0; margin-bottom: 25px; }.policy-text-container li { font-family: 'Inter', sans-serif; color: #B0A1C7; margin-bottom: 12px; padding-left: 25px; position: relative; line-height: 1.6; }.policy-text-container li::before { content: '\f105'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #00F5FF; }.policy-text-container strong { color: #FFFFFF; font-weight: 600; }@media (max-width: 768px) { .policy-layout-block { padding: 30px 0; } .policy-text-container { padding: 25px; border: none; } .policy-text-container h1 { font-size: 1.8rem; } .policy-text-container h2 { font-size: 1.2rem; } .policy-text-container p, .policy-text-container li { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-layout-block { background-color: #0D0221; padding: clamp(3rem, 10vw, 6rem) 0; min-height: 100vh; display: flex; justify-content: center; }.policy-text-container { width: 100%; max-width: 800px; padding: 0 20px; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.6; }.policy-text-container h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #BC13FE; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem; font-size: clamp(1.5rem, 5vw, 2.5rem); border-bottom: 2px solid #BC13FE; padding-bottom: 1rem; }.policy-text-container h2 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #00F5FF; text-transform: uppercase; margin-top: 2.5rem; margin-bottom: 1.25rem; font-size: clamp(1.2rem, 4vw, 1.75rem); }.policy-text-container p { margin-bottom: 1.25rem; color: #B0A1C7; font-size: 1rem; }.policy-text-container ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; }.policy-text-container ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #B0A1C7; }.policy-text-container ul li::before { content: '>'; position: absolute; left: 0; color: #BC13FE; font-weight: bold; }.policy-text-container a { color: #00F5FF; text-decoration: none; transition: color 0.3s ease; }.policy-text-container a:hover { color: #BC13FE; text-decoration: underline; }@media (max-width: 767px) { .policy-text-container h1 { font-size: 18px; } .policy-text-container h2 { font-size: 16px; } .policy-text-container p, .policy-text-container li { font-size: 14px; hyphens: auto; } }

/* ===== PAGE: disclaimer ===== */
.policy-layout-block { background-color: #0D0221; padding: 6rem 0; color: #FFFFFF; font-family: 'Inter', sans-serif; } .policy-text-container { max-width: 900px; margin: 0 auto; padding: 0 24px; } .policy-text-container h2 { font-family: 'Rajdhani', sans-serif; color: #BC13FE; text-transform: uppercase; font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(188, 19, 254, 0.3); padding-bottom: 0.5rem; } .policy-text-container p { font-size: 1.1rem; line-height: 1.8; color: #B0A1C7; margin-bottom: 1.5rem; } .policy-text-container ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } .policy-text-container ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #B0A1C7; font-size: 1rem; line-height: 1.6; } .policy-text-container ul li::before { content: '→'; position: absolute; left: 0; color: #00F5FF; font-weight: bold; } .policy-text-container a { color: #00F5FF; text-decoration: none; transition: color 0.3s ease; } .policy-text-container a:hover { color: #BC13FE; } @media (max-width: 768px) { .policy-layout-block { padding: 3rem 0; } .policy-text-container h2 { font-size: 1.5rem; } .policy-text-container p { font-size: 1rem; } }

/* ===== PAGE: cookies ===== */
.policy-layout-block {
  background-color: #0D0221;
  padding: clamp(3rem, 10vw, 6rem) 0;
  color: #FFFFFF;
  min-height: 100vh;
}

.policy-layout-block .policy-text-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-layout-block .neon-policy-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #BC13FE;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
  border-bottom: 2px solid #BC13FE;
  padding-bottom: 1rem;
}

.policy-layout-block .neon-policy-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #00F5FF;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.policy-layout-block .neon-policy-content p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #B0A1C7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.policy-layout-block .neon-policy-content .lead-text {
  font-size: 1.15rem;
  color: #FFFFFF;
  border-left: 3px solid #BC13FE;
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.policy-layout-block .neon-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.policy-layout-block .neon-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #B0A1C7;
  line-height: 1.6;
}

.policy-layout-block .neon-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #BC13FE;
  border-radius: 50%;
  box-shadow: 0 0 8px #BC13FE;
}

.policy-layout-block .neon-list li strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.25rem;
}

.policy-layout-block .contact-list {
  list-style: none;
  padding: 1.5rem;
  background: #1A0B2E;
  border: 1px solid rgba(188, 19, 254, 0.3);
  border-radius: 4px;
}

.policy-layout-block .contact-list li {
  margin-bottom: 0.75rem;
  color: #B0A1C7;
}

.policy-layout-block .neon-link {
  color: #00F5FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-layout-block .neon-link:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px #00F5FF;
}

@media (max-width: 768px) {
  .policy-layout-block .neon-policy-content h1 { font-size: 24px; }
  .policy-layout-block .neon-policy-content h2 { font-size: 18px; }
  .policy-layout-block .neon-policy-content p { font-size: 0.95rem; }
}

/* ===== PAGE: game-archive ===== */
.ncv-archive-header { background: #0D0221; border-bottom: 1px solid rgba(188, 19, 254, 0.2); }
.ncv-archive-header__title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.1em; }
.ncv-archive-header__subtitle { font-family: 'Inter', sans-serif; color: #B0A1C7; max-width: 800px; font-size: 1.1rem; }
.ncv-archive-header__divider { width: 60px; height: 4px; background: #BC13FE; margin: 2rem auto 0; box-shadow: 0 0 10px rgba(188, 19, 254, 0.5); }
.ncv-card { background: #1A0B2E; border: 1px solid rgba(188, 19, 254, 0.2); border-radius: 4px; transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden; }
.ncv-card:hover { border-color: #00F5FF; box-shadow: 0 0 20px rgba(0, 245, 255, 0.15); }
.ncv-card__img-wrapper { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ncv-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ncv-card:hover .ncv-card__img { transform: scale(1.05); }
.ncv-card__category { position: absolute; top: 1rem; left: 1rem; background: #BC13FE; color: #FFFFFF; font-family: 'Rajdhani', sans-serif; font-weight: 700; padding: 4px 12px; font-size: 0.75rem; text-transform: uppercase; border-radius: 2px; }
.ncv-card__content { padding: 1.5rem; flex-grow: 1; }
.ncv-card__meta { color: #7A6B91; font-size: 0.85rem; }
.ncv-card__title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #FFFFFF; margin-bottom: 1rem; font-size: 1.5rem; text-transform: uppercase; }
.ncv-card__text { color: #B0A1C7; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 1.5rem; }
.ncv-btn--primary { background: #BC13FE; color: #FFFFFF; font-family: 'Rajdhani', sans-serif; font-weight: 700; padding: 12px 28px; text-transform: uppercase; border: none; display: inline-flex; align-items: center; border-radius: 4px; transition: all 0.3s ease; width: fit-content; text-decoration: none; }
.ncv-btn--primary:hover { background: #00F5FF; color: #0D0221; }
@media (max-width: 767px) {
  .ncv-archive-header__title { font-size: 1.5rem; }
  .ncv-card__title { font-size: 1.25rem; }
}

/* ===== PAGE: era-hits ===== */
.era-hits-section { background-color: #0D0221; color: #FFFFFF; font-family: 'Inter', sans-serif; min-height: 80vh; }
.era-hits-section .era-hits-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.5rem; text-transform: uppercase; color: #BC13FE; text-shadow: 0 0 15px rgba(188, 19, 254, 0.4); margin-bottom: 1rem; }
.era-hits-section .era-hits-lead { color: #B0A1C7; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.era-hits-section .card { background: #1A0B2E; border: 1px solid rgba(188, 19, 254, 0.2); transition: all 0.3s ease; border-radius: 4px; overflow: hidden; }
.era-hits-section .card:hover { border-color: #00F5FF; box-shadow: 0 0 20px rgba(0, 245, 255, 0.15); }
.era-hits-section .card-img-wrapper { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.era-hits-section .card-img-top { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.era-hits-section .card:hover .card-img-top { transform: scale(1.05); }
.era-hits-section .card-body h3 { font-family: 'Rajdhani', sans-serif; color: #00F5FF; font-size: 1.25rem; margin-bottom: 0.75rem; text-transform: uppercase; }
.era-hits-section .card-body p { color: #B0A1C7; font-size: 0.95rem; line-height: 1.5; }
.era-hits-section .btn-primary { background-color: #BC13FE; border: none; padding: 12px 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.era-hits-section .btn-primary.active { box-shadow: 0 0 15px rgba(188, 19, 254, 0.6); }
.era-hits-section .btn-outline { border: 2px solid #00F5FF; color: #00F5FF; background: transparent; padding: 10px 22px; font-weight: 700; text-transform: uppercase; transition: all 0.3s; }
.era-hits-section .btn-outline:hover, .era-hits-section .btn-outline.active { background: #00F5FF; color: #0D0221; }
@media (max-width: 768px) {
  .era-hits-section .era-hits-title { font-size: 1.8rem; }
  .era-hits-section .era-hits-lead { font-size: 1rem; }
}

/* ===== PAGE: retro-hall ===== */
.rh-intro { background-color: #0D0221; position: relative; overflow: hidden; } .rh-title { font-family: 'Rajdhani', sans-serif; color: #FFFFFF; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2rem; } .rh-divider { width: 80px; height: 4px; background: #BC13FE; margin: 0 auto; box-shadow: 0 0 10px rgba(188, 19, 254, 0.5); } .rh-description { color: #B0A1C7; font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; } .rh-articles { background-color: #0D0221; } .rh-card { background: #1A0B2E; border: 1px solid rgba(188, 19, 254, 0.2); border-radius: 4px; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; } .rh-card:hover { border-color: #00F5FF; box-shadow: 0 0 20px rgba(0, 245, 255, 0.15); } .rh-card-img-wrapper { height: 200px; overflow: hidden; position: relative; } .rh-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .rh-card:hover .rh-card-img { transform: scale(1.05); } .rh-card-body { padding: 1.5rem; } .rh-card-date { display: block; font-size: 0.85rem; color: #7A6B91; margin-bottom: 0.75rem; font-weight: 600; } .rh-card-title { color: #FFFFFF; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; } .rh-card-text { color: #B0A1C7; font-size: 0.95rem; } .rh-btn { display: inline-block; background: #BC13FE; color: #FFFFFF; text-align: center; text-decoration: none; padding: 10px 24px; font-weight: 700; text-transform: uppercase; transition: background 0.3s ease, box-shadow 0.3s ease; border: none; font-size: 0.9rem; } .rh-btn:hover { background: #00F5FF; color: #0D0221; box-shadow: 0 0 15px rgba(0, 245, 255, 0.4); } @media (max-width: 767px) { .rh-title { font-size: 1.5rem; } .rh-description { font-size: 0.95rem; } }

/* ===== PAGE: pixel-challenge ===== */
.pixel-challenge-intro { padding: 60px 0; background-color: #0D0221; }.pixel-challenge-intro .pixel-title { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; color: #00F5FF; letter-spacing: 2px; text-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }.pixel-challenge-intro .pixel-lead { color: #B0A1C7; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }.pixel-stat-card { background: #1A0B2E; border: 1px solid rgba(188, 19, 254, 0.3); padding: 15px 25px; min-width: 140px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; }.pixel-stat-card .stat-label { font-size: 0.75rem; text-transform: uppercase; margin-bottom: 5px; }.pixel-stat-card .stat-value { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: #BC13FE; font-weight: 700; }.arcade-game-section { padding: 80px 0; background-color: #1A0B2E; }.game-frame { background: #0D0221; border: 4px solid #4A3B63; padding: 10px; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); position: relative; }.game-viewport { width: 100%; height: 400px; background: #000; position: relative; overflow: hidden; border: 2px solid #1A0B2E; cursor: crosshair; }.game-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; background: rgba(13, 2, 33, 0.9); display: flex; align-items: center; justify-content: center; color: #fff; }.game-player { position: absolute; bottom: 10px; left: 50%; width: 40px; height: 40px; background: #00F5FF; transform: translateX(-50%); transition: left 0.1s linear; border-radius: 2px; box-shadow: 0 0 10px #00F5FF; }.game-item { position: absolute; width: 20px; height: 20px; border-radius: 2px; }.item-coin { background: #FFD700; box-shadow: 0 0 8px #FFD700; }.item-obstacle { background: #FF3131; box-shadow: 0 0 8px #FF3131; }.game-instructions p { line-height: 1.8; color: #B0A1C7; }@media (max-width: 768px) { .game-viewport { height: 300px; } .pixel-stat-card { min-width: 100px; padding: 10px; } }

/* ===== PAGE: drive-worlds ===== */
.drive-worlds-section {
  background-color: #0D0221;
  color: #FFFFFF;
}

.drive-worlds-section h1,
.drive-worlds-section h2,
.drive-worlds-section h3,
.drive-worlds-section h4,
.drive-worlds-section h5,
.drive-worlds-section h6 {
  color: #FFFFFF;
}

.drive-worlds-section .text-accent {
  color: #00F5FF !important;
}

.drive-worlds-section .header-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #BC13FE, #00F5FF);
  border-radius: 2px;
}

.drive-worlds-section .search-box .input-group-text,
.drive-worlds-section .search-box .form-control {
  border-color: rgba(188, 19, 254, 0.4);
  color: #FFFFFF;
}

.drive-worlds-section .search-box .form-control:focus {
  border-color: #00F5FF;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.drive-worlds-section .drive-card {
  background-color: #1A0B2E;
  border: 1px solid rgba(188, 19, 254, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
}

.drive-worlds-section .drive-card:hover {
  border-color: #00F5FF;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.drive-worlds-section .card-img-top {
  transition: transform 0.5s ease;
  object-fit: cover;
}

.drive-worlds-section .drive-card:hover .card-img-top {
  transform: scale(1.05);
}

.drive-worlds-section .btn-primary {
  background-color: #BC13FE;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drive-worlds-section .btn-primary:hover {
  background-color: #00F5FF;
  color: #0D0221;
}

.drive-worlds-section .btn-outline-secondary {
  border-color: #00F5FF;
  color: #00F5FF;
}

.drive-worlds-section .btn-outline-secondary:hover {
  background-color: #00F5FF;
  color: #0D0221;
}

.drive-worlds-section .share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .drive-worlds-section h1 {
    font-size: 1.5rem !important;
  }
  .drive-worlds-section .lead {
    font-size: 0.9rem;
  }
}

.comment-card {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.2);
    padding: 1.5rem;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
    border-color: #00F5FF;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
}

.avatar-custom {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 1px solid rgba(0, 245, 255, 0.5);
}

.primary-glow {
    background: linear-gradient(135deg, #BC13FE 0%, #7A6B91 100%);
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

.comment-author {
    font-family: 'Rajdhani', sans-serif;
    color: #00F5FF;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

.btn-action {
    background: transparent;
    border: none;
    color: #7A6B91;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0;
    transition: color 0.2s ease;
}

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

.reply-card {
    background: rgba(26, 11, 46, 0.5);
    border-left: 2px solid #BC13FE;
    margin-top: -1rem;
}

.secondary-glow {
    background: linear-gradient(135deg, #00F5FF 0%, #4A3B63 100%);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.reply-card .comment-text {
    font-size: 0.95rem;
}


/* ===== PAGE TEMPLATE: retro-hall ===== */
.retro-hall-detail-hero {
    min-height: 40vh;
    padding: 100px 0 60px;
    background: #0D0221;
    background-image: url('../files/static/media/digital-racers-retro.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.retro-hall-detail-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 2, 33, 0.7) 0%, #0D0221 100%);
    z-index: 1;
}

.retro-hall-detail-hero .container {
    z-index: 2;
}

.retro-hall-detail-hero__title {
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.7);
}

.retro-hall-detail-hero .breadcrumb-item,
.retro-hall-detail-hero .breadcrumb-item a {
    color: #B0A1C7;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
}

.retro-hall-detail-hero .breadcrumb-item.active {
    color: #00F5FF;
}

.retro-hall-content {
    background-color: #0D0221;
}

.retro-hall-article__body {
    color: #B0A1C7;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.retro-hall-article__body h3 {
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    margin: 2rem 0 1rem;
}

.retro-hall-article__meta {
    color: #7A6B91;
    font-size: 0.9rem;
}

.retro-hall-spec-box {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.3);
}

.retro-hall-spec-box h4 {
    color: #00F5FF;
    font-family: 'Rajdhani', sans-serif;
}

.text-accent {
    color: #BC13FE;
}

.btn-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A0B2E;
    color: #B0A1C7;
    border: 1px solid rgba(188, 19, 254, 0.3);
    transition: all 0.3s ease;
}

.btn-share:hover {
    color: #00F5FF;
    border-color: #00F5FF;
    transform: translateY(-3px);
}

.btn-primary-custom {
    background: #BC13FE;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}


.comment-card {
    background: #1A0B2E;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(188, 19, 254, 0.1);
}

.avatar-custom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
}

.primary-glow {
    background: #BC13FE;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

.secondary-glow {
    background: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
}

.comment-author {
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
}

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

.comment-text {
    color: #B0A1C7;
    margin-top: 10px;
}

.btn-action {
    background: transparent;
    border: none;
    color: #BC13FE;
    font-size: 0.85rem;
    padding: 0;
}

.btn-action:hover {
    color: #00F5FF;
}

.form-control {
    background: #1A0B2E !important;
    border: 1px solid rgba(188, 19, 254, 0.3) !important;
    color: #FFFFFF !important;
}

.form-control::placeholder {
    color: #7A6B91 !important;
    opacity: 1;
}


.sidebar-widget {
    background: #1A0B2E;
    padding: 20px;
    border-radius: 8px;
}

.widget-title {
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    border-left: 4px solid #BC13FE;
    padding-left: 15px;
}

.recent-post-link {
    text-decoration: none;
    color: #B0A1C7;
    transition: 0.3s;
    font-size: 0.95rem;
}

.recent-post-link:hover {
    color: #00F5FF;
}

.sidebar-cta {
    background: linear-gradient(135deg, #BC13FE44 0%, #1A0B2E 100%);
    border: 1px solid #BC13FE33;
}

.sidebar-cta p {
    color: #B0A1C7;
    font-size: 0.9rem;
}

/* ===== PAGE TEMPLATE: drive-worlds ===== */
.drive-worlds-detail {
    background-color: #0D0221;
    color: #B0A1C7;
}

.drive-worlds-detail .detail-hero {
    padding: clamp(6rem, 15vw, 10rem) 0 4rem;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.drive-worlds-detail .detail-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0D0221 10%, rgba(13, 2, 33, 0.4) 100%);
    z-index: 1;
}

.drive-worlds-detail .detail-hero .container {
    z-index: 2;
}

.drive-worlds-detail .detail-hero__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.6);
    margin-top: 0;
}

.drive-worlds-detail .detail-hero__subtitle {
    font-size: 1.125rem;
    max-width: 800px;
    color: #00F5FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.drive-worlds-detail .meta-item {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #B0A1C7;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.drive-worlds-detail .meta-item i {
    color: #BC13FE;
}

.drive-worlds-detail .breadcrumb-item a {
    color: #00F5FF;
    text-decoration: none;
}

.drive-worlds-detail .text-accent {
    color: #BC13FE !important;
}

.drive-worlds-detail .slider-container {
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 8px;
    background: #1A0B2E;
}

.drive-worlds-detail .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(188, 19, 254, 0.5);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
}

.drive-worlds-detail .slider-btn:hover {
    background: #BC13FE;
}

.drive-worlds-detail .slider-btn.prev {
    left: 10px;
}

.drive-worlds-detail .slider-btn.next {
    right: 10px;
}

.drive-worlds-detail .feature-list {
    list-style: none;
    padding-left: 0;
}

.drive-worlds-detail .feature-list li {
    margin-bottom: 10px;
    color: #FFFFFF;
    display: flex;
    align-items: flex-start;
}

.drive-worlds-detail .nav-tabs .nav-link {
    background: #1A0B2E;
    color: #B0A1C7;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(188, 19, 254, 0.2);
    padding: 12px 24px;
    border-radius: 4px;
}

.drive-worlds-detail .nav-tabs .nav-link.active {
    background: #BC13FE;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.drive-worlds-detail .tab-content {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.1);
    border-radius: 4px;
}

.drive-worlds-detail .avatar-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
}

.drive-worlds-detail .primary-glow {
    background: #BC13FE;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.drive-worlds-detail .secondary-glow {
    background: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    color: #0D0221;
}

.drive-worlds-detail .comment-card {
    background: rgba(26, 11, 46, 0.5);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid #BC13FE;
}

.drive-worlds-detail .comment-author {
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
}

.drive-worlds-detail .comment-date {
    font-size: 0.8rem;
    color: #7A6B91;
}

.drive-worlds-detail .btn-action {
    background: transparent;
    border: none;
    color: #00F5FF;
    font-size: 0.85rem;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
}

.drive-worlds-detail .btn-action:hover {
    opacity: 0.7;
}

.drive-worlds-detail .comment-form-block {
    background: #1A0B2E;
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 4px;
}

.drive-worlds-detail .form-control {
    background: #0D0221;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.drive-worlds-detail .form-control:focus {
    background: #0D0221;
    border-color: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
    color: #FFFFFF;
}

.drive-worlds-detail .btn-submit {
    background: #BC13FE;
    color: #FFFFFF;
    border: none;
    padding: 10px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.drive-worlds-detail .btn-submit:hover {
    background: #00F5FF;
    color: #0D0221;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.drive-worlds-detail .info-card,
.drive-worlds-detail .share-card,
.drive-worlds-detail .recent-entries {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 4px;
}

.drive-worlds-detail .info-card__title,
.drive-worlds-detail .share-card__title,
.drive-worlds-detail .recent-entries__title {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    color: #00F5FF;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    padding-bottom: 10px;
}

.drive-worlds-detail .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0D0221;
    color: #BC13FE;
    border: 1px solid rgba(188, 19, 254, 0.3);
    text-decoration: none;
    transition: all 0.3s;
}

.drive-worlds-detail .share-btn:hover {
    background: #BC13FE;
    color: #FFFFFF;
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .drive-worlds-detail .detail-content-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .drive-worlds-detail .reply-card {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: archive-single ===== */
.archive-single-template {
    background-color: #0D0221;
    color: #FFFFFF;
    overflow-x: hidden;
}

.archive-single-template .main-text-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0A1C7;
}

.archive-single-template .main-text-content h2,
.archive-single-template .main-text-content h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.archive-single-template .main-text-content h2 {
    border-left: 4px solid #BC13FE;
    padding-left: 15px;
}

.archive-single-template .sidebar-card {
    background: #1A0B2E;
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 4px;
}

.archive-single-template .sidebar-title {
    font-family: 'Rajdhani', sans-serif;
    color: #00F5FF;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    padding-bottom: 10px;
}

.archive-single-template .sidebar-links-list a {
    color: #B0A1C7;
    transition: color 0.3s ease;
}

.archive-single-template .sidebar-links-list a:hover {
    color: #BC13FE;
}

.archive-single-template .text-accent {
    color: #BC13FE;
    font-weight: 600;
}

.archive-single-template .dark-input {
    background-color: #1A0B2E !important;
    border: 1px solid rgba(188, 19, 254, 0.3) !important;
    color: #FFFFFF !important;
    border-radius: 4px;
}

.archive-single-template .dark-input:focus {
    border-color: #00F5FF !important;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3) !important;
}

.archive-single-template .comment-card {
    background: rgba(26, 11, 46, 0.5);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(188, 19, 254, 0.1);
}

.archive-single-template .avatar-custom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #FFFFFF;
}

.archive-single-template .primary-glow {
    background: #BC13FE;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.archive-single-template .secondary-glow {
    background: #00F5FF;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.archive-single-template .comment-author {
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.archive-single-template .comment-date {
    color: #7A6B91;
    font-size: 0.8rem;
}

.archive-single-template .comment-text {
    color: #B0A1C7;
    font-size: 0.95rem;
}

.archive-single-template .btn-action {
    background: transparent;
    border: none;
    color: #00F5FF;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.archive-single-template .btn-action:hover {
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .archive-single-template .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
