/* ============================================
   港风霓虹夜市风 - 主样式文件
   CSS前缀: sj-
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sj-black: #000000;
    --sj-neon-red: #FF004D;
    --sj-neon-yellow: #FFAA00;
    --sj-neon-blue: #00F0FF;
    --sj-white: #FFFFFF;
    --sj-gray: #AAAAAA;
    --sj-dark-gray: #1a1a1a;
    --sj-card-bg: #111111;
    --sj-border: #333333;
    --sj-glow-red: 0 0 10px rgba(255, 0, 77, 0.6), 0 0 20px rgba(255, 0, 77, 0.3);
    --sj-glow-yellow: 0 0 10px rgba(255, 170, 0, 0.6), 0 0 20px rgba(255, 170, 0, 0.3);
    --sj-glow-blue: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: var(--sj-black);
    color: var(--sj-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--sj-neon-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.sj-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Neon Animation Keyframes --- */
@keyframes sj-neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff,
                     0 0 40px var(--sj-neon-red), 0 0 80px var(--sj-neon-red),
                     0 0 90px var(--sj-neon-red), 0 0 100px var(--sj-neon-red);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

@keyframes sj-neon-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes sj-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--sj-neon-red), 0 0 10px var(--sj-neon-red);
    }
    50% {
        box-shadow: 0 0 10px var(--sj-neon-red), 0 0 20px var(--sj-neon-red), 0 0 30px var(--sj-neon-red);
    }
}

@keyframes sj-slide-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sj-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Navigation --- */
.sj-header {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid var(--sj-neon-red);
    z-index: 1000;
}

.sj-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.sj-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    animation: sj-neon-breathe 3s ease-in-out infinite;
    white-space: nowrap;
}

.sj-logo span {
    color: var(--sj-neon-yellow);
    text-shadow: var(--sj-glow-yellow);
}

.sj-nav {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
}

.sj-nav li a {
    display: block;
    padding: 8px 14px;
    color: var(--sj-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.sj-nav li a:hover {
    color: var(--sj-neon-yellow);
    text-shadow: var(--sj-glow-yellow);
    border-bottom-color: var(--sj-neon-yellow);
}

.sj-nav li a.sj-active {
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    border-bottom-color: var(--sj-neon-red);
}

/* Hamburger Menu */
.sj-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.sj-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--sj-neon-red);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--sj-glow-red);
}

.sj-hamburger.sj-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sj-hamburger.sj-open span:nth-child(2) {
    opacity: 0;
}

.sj-hamburger.sj-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero / Carousel --- */
.sj-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
}

.sj-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.sj-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sj-hero-slide.sj-active {
    opacity: 1;
}

.sj-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}

.sj-hero-caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 600px;
    z-index: 2;
}

.sj-hero-caption h2 {
    font-size: 2.5rem;
    color: var(--sj-neon-yellow);
    text-shadow: var(--sj-glow-yellow);
    margin-bottom: 12px;
}

.sj-hero-caption p {
    font-size: 1.1rem;
    color: var(--sj-gray);
    margin-bottom: 20px;
}

.sj-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.sj-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sj-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sj-hero-dot.sj-active {
    background: var(--sj-neon-red);
    box-shadow: var(--sj-glow-red);
}

/* --- Buttons --- */
.sj-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sj-white);
    background: transparent;
    border: 2px solid var(--sj-neon-red);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 5px var(--sj-neon-red), inset 0 0 5px rgba(255, 0, 77, 0.1);
}

.sj-btn:hover {
    background: var(--sj-neon-red);
    color: var(--sj-white);
    box-shadow: 0 0 15px var(--sj-neon-red), 0 0 30px rgba(255, 0, 77, 0.4);
    text-shadow: none;
}

.sj-btn-play {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sj-black);
    background: var(--sj-neon-yellow);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.sj-btn-play:hover {
    background: var(--sj-neon-red);
    color: var(--sj-white);
    box-shadow: 0 0 20px rgba(255, 0, 77, 0.6);
}

.sj-btn-yellow {
    border-color: var(--sj-neon-yellow);
    box-shadow: 0 0 5px var(--sj-neon-yellow), inset 0 0 5px rgba(255, 170, 0, 0.1);
}

.sj-btn-yellow:hover {
    background: var(--sj-neon-yellow);
    color: var(--sj-black);
    box-shadow: 0 0 15px var(--sj-neon-yellow), 0 0 30px rgba(255, 170, 0, 0.4);
}

/* --- Section Titles --- */
.sj-section {
    padding: 60px 0;
    position: relative;
}

.sj-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    position: relative;
    padding-bottom: 15px;
}

.sj-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sj-neon-red), var(--sj-neon-yellow));
    box-shadow: 0 0 10px var(--sj-neon-red);
}

.sj-section-subtitle {
    text-align: center;
    color: var(--sj-gray);
    font-size: 1rem;
    margin-top: -25px;
    margin-bottom: 35px;
}

/* --- Top 10 Ranking --- */
.sj-top-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.sj-top-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sj-top-item:hover {
    border-color: var(--sj-neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 77, 0.2);
    transform: translateX(5px);
}

.sj-top-rank {
    font-size: 2rem;
    font-weight: 900;
    color: var(--sj-neon-yellow);
    text-shadow: var(--sj-glow-yellow);
    min-width: 60px;
    text-align: center;
}

.sj-top-item:nth-child(1) .sj-top-rank,
.sj-top-item:nth-child(2) .sj-top-rank,
.sj-top-item:nth-child(3) .sj-top-rank {
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
}

.sj-top-info {
    flex: 1;
    padding: 0 15px;
}

.sj-top-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sj-top-info h3 a {
    color: var(--sj-white);
}

.sj-top-info h3 a:hover {
    color: var(--sj-neon-yellow);
}

.sj-top-info p {
    font-size: 0.9rem;
    color: var(--sj-gray);
}

.sj-top-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sj-neon-yellow);
    text-shadow: var(--sj-glow-yellow);
    min-width: 50px;
    text-align: center;
}

/* --- Star Cards --- */
.sj-star-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.sj-star-card {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    padding-bottom: 20px;
}

.sj-star-card:hover {
    border-color: var(--sj-neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.sj-star-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.sj-star-card h4 {
    font-size: 1.1rem;
    margin: 12px 0 5px;
    color: var(--sj-neon-yellow);
}

.sj-star-card p {
    font-size: 0.85rem;
    color: var(--sj-gray);
    padding: 0 15px;
}

/* --- Movie Cards --- */
.sj-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.sj-movie-card {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sj-movie-card:hover {
    border-color: var(--sj-neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 77, 0.3);
    transform: translateY(-5px);
}

.sj-movie-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.sj-movie-card-info {
    padding: 12px;
}

.sj-movie-card-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--sj-white);
}

.sj-movie-card-info .sj-movie-meta {
    font-size: 0.8rem;
    color: var(--sj-gray);
    margin-bottom: 5px;
}

.sj-movie-card-info .sj-movie-rating {
    color: var(--sj-neon-yellow);
    font-weight: 700;
}

/* --- Behind Scenes / Story Cards --- */
.sj-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.sj-story-card {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sj-story-card:hover {
    border-color: var(--sj-neon-yellow);
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.2);
}

.sj-story-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.sj-story-card-body {
    padding: 20px;
}

.sj-story-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sj-neon-yellow);
}

.sj-story-card-body p {
    font-size: 0.9rem;
    color: var(--sj-gray);
    line-height: 1.6;
}

/* --- Timeline / Era Section --- */
.sj-era-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sj-era-tab {
    padding: 8px 20px;
    border: 1px solid var(--sj-neon-blue);
    border-radius: 20px;
    color: var(--sj-neon-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: transparent;
}

.sj-era-tab:hover,
.sj-era-tab.sj-active {
    background: var(--sj-neon-blue);
    color: var(--sj-black);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* --- Forum Section --- */
.sj-forum-list {
    max-width: 900px;
    margin: 0 auto;
}

.sj-forum-item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    margin-bottom: 12px;
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sj-forum-item:hover {
    border-color: var(--sj-neon-yellow);
}

.sj-forum-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--sj-neon-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.sj-forum-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.sj-forum-content h4 a {
    color: var(--sj-white);
}

.sj-forum-content p {
    font-size: 0.85rem;
    color: var(--sj-gray);
}

.sj-forum-meta {
    font-size: 0.8rem;
    color: var(--sj-gray);
    margin-top: 5px;
}

/* --- Collection Guide --- */
.sj-collect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.sj-collect-card {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.sj-collect-card:hover {
    border-color: var(--sj-neon-yellow);
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.2);
}

.sj-collect-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sj-collect-card h4 {
    color: var(--sj-neon-yellow);
    margin-bottom: 10px;
}

/* --- Shop / Merch --- */
.sj-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.sj-shop-item {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sj-shop-item:hover {
    border-color: var(--sj-neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 77, 0.2);
}

.sj-shop-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.sj-shop-item-info {
    padding: 15px;
}

.sj-shop-item-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.sj-shop-price {
    color: var(--sj-neon-red);
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- VIP Section --- */
.sj-vip-section {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a1a 50%, #1a0a0a 100%);
    border: 1px solid var(--sj-neon-red);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sj-vip-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 77, 0.05) 0%, transparent 70%);
    animation: sj-neon-breathe 4s ease-in-out infinite;
}

.sj-vip-section h3 {
    font-size: 1.8rem;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    margin-bottom: 15px;
    position: relative;
}

.sj-vip-section p {
    color: var(--sj-gray);
    margin-bottom: 25px;
    position: relative;
}

.sj-vip-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
}

.sj-vip-feature {
    text-align: center;
    padding: 15px;
}

.sj-vip-feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.sj-vip-feature span {
    display: block;
    color: var(--sj-neon-yellow);
    font-size: 0.9rem;
}

/* --- Calendar Section --- */
.sj-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sj-calendar-item {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.sj-calendar-item:hover {
    border-color: var(--sj-neon-blue);
}

.sj-calendar-date {
    background: var(--sj-neon-red);
    color: var(--sj-white);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.sj-calendar-date .sj-cal-month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.sj-calendar-date .sj-cal-day {
    font-size: 1.5rem;
    font-weight: 700;
}

.sj-calendar-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--sj-neon-yellow);
}

.sj-calendar-info p {
    font-size: 0.85rem;
    color: var(--sj-gray);
}

/* --- Footer --- */
.sj-footer {
    background: var(--sj-dark-gray);
    border-top: 2px solid var(--sj-neon-red);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.sj-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sj-footer-col h5 {
    font-size: 1.1rem;
    color: var(--sj-neon-yellow);
    margin-bottom: 15px;
    text-shadow: var(--sj-glow-yellow);
}

.sj-footer-col p {
    font-size: 0.9rem;
    color: var(--sj-gray);
    line-height: 1.6;
}

.sj-footer-col ul {
    list-style: none;
}

.sj-footer-col ul li {
    margin-bottom: 8px;
}

.sj-footer-col ul li a {
    color: var(--sj-gray);
    font-size: 0.9rem;
}

.sj-footer-col ul li a:hover {
    color: var(--sj-neon-yellow);
}

.sj-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.sj-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--sj-neon-red);
    border-radius: 50%;
    color: var(--sj-neon-red);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sj-footer-social a:hover {
    background: var(--sj-neon-red);
    color: var(--sj-white);
    box-shadow: var(--sj-glow-red);
}

.sj-footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.sj-footer-badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.sj-footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--sj-border);
    font-size: 0.85rem;
    color: var(--sj-gray);
}

.sj-footer-bottom a {
    color: var(--sj-gray);
    margin: 0 5px;
}

.sj-footer-bottom a:hover {
    color: var(--sj-neon-yellow);
}

.sj-beian-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

/* --- Category Page --- */
.sj-page-hero {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sj-page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.sj-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sj-page-hero-content h1 {
    font-size: 2.5rem;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    margin-bottom: 10px;
}

.sj-page-hero-content p {
    color: var(--sj-gray);
    font-size: 1.1rem;
}

/* --- Archive / Search Page --- */
.sj-archive-filters {
    background: var(--sj-card-bg);
    border: 1px solid var(--sj-border);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.sj-filter-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.sj-filter-group {
    flex: 1;
    min-width: 200px;
}

.sj-filter-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--sj-neon-yellow);
    margin-bottom: 5px;
}

.sj-filter-group input,
.sj-filter-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--sj-black);
    border: 1px solid var(--sj-border);
    border-radius: 6px;
    color: var(--sj-white);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.sj-filter-group input:focus,
.sj-filter-group select:focus {
    outline: none;
    border-color: var(--sj-neon-blue);
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.sj-filter-checkboxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sj-filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--sj-gray);
    font-size: 0.9rem;
    cursor: pointer;
}

.sj-filter-checkboxes input[type="checkbox"] {
    accent-color: var(--sj-neon-red);
}

/* --- APP Download Page --- */
.sj-app-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a0a2a 0%, var(--sj-black) 70%);
    padding: 60px 20px;
}

.sj-app-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    flex-wrap: wrap;
    justify-content: center;
}

.sj-app-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.sj-app-text h1 {
    font-size: 2.5rem;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    margin-bottom: 20px;
}

.sj-app-text p {
    color: var(--sj-gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.sj-app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.sj-app-mockup {
    flex-shrink: 0;
}

.sj-app-mockup img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 77, 0.3);
}

/* --- Content Page --- */
.sj-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sj-article h1 {
    font-size: 2rem;
    color: var(--sj-neon-red);
    text-shadow: var(--sj-glow-red);
    margin-bottom: 15px;
}

.sj-article-meta {
    color: var(--sj-gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--sj-border);
}

.sj-article-content {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--sj-white);
}

.sj-article-content p {
    margin-bottom: 18px;
}

.sj-article-content img {
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--sj-border);
}

/* --- Pagination --- */
.sj-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.sj-pagination a,
.sj-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--sj-border);
    border-radius: 6px;
    color: var(--sj-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sj-pagination a:hover,
.sj-pagination span.sj-active {
    border-color: var(--sj-neon-red);
    color: var(--sj-neon-red);
    box-shadow: 0 0 5px rgba(255, 0, 77, 0.3);
}

/* --- Breadcrumb --- */
.sj-breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
    color: var(--sj-gray);
}

.sj-breadcrumb a {
    color: var(--sj-gray);
}

.sj-breadcrumb a:hover {
    color: var(--sj-neon-yellow);
}

.sj-breadcrumb span {
    margin: 0 8px;
    color: var(--sj-border);
}

/* --- Neon Divider --- */
.sj-neon-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sj-neon-red), var(--sj-neon-yellow), var(--sj-neon-blue), transparent);
    margin: 40px 0;
    opacity: 0.6;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sj-black);
}

::-webkit-scrollbar-thumb {
    background: var(--sj-neon-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sj-neon-yellow);
}

/* --- Responsive Design --- */

/* Mobile: 375px */
@media (max-width: 767px) {
    .sj-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        border-top: 1px solid var(--sj-neon-red);
        padding: 10px 0;
    }

    .sj-nav.sj-open {
        display: flex;
    }

    .sj-nav li a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--sj-border);
    }

    .sj-hamburger {
        display: flex;
    }

    .sj-hero {
        height: 50vh;
        min-height: 300px;
    }

    .sj-hero-caption h2 {
        font-size: 1.5rem;
    }

    .sj-hero-caption p {
        font-size: 0.9rem;
    }

    .sj-section-title {
        font-size: 1.5rem;
    }

    .sj-footer-grid {
        grid-template-columns: 1fr;
    }

    .sj-top-item {
        padding: 12px;
    }

    .sj-top-rank {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .sj-star-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sj-movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sj-story-grid {
        grid-template-columns: 1fr;
    }

    .sj-page-hero {
        height: 200px;
    }

    .sj-page-hero-content h1 {
        font-size: 1.8rem;
    }

    .sj-app-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .sj-app-text h1 {
        font-size: 1.8rem;
    }

    .sj-app-mockup img {
        max-height: 350px;
    }

    .sj-filter-row {
        flex-direction: column;
    }

    .sj-vip-features {
        gap: 15px;
    }

    .sj-calendar-grid {
        grid-template-columns: 1fr;
    }

    .sj-article h1 {
        font-size: 1.5rem;
    }
}

/* Tablet: 768px */
@media (min-width: 768px) and (max-width: 1023px) {
    .sj-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        border-top: 1px solid var(--sj-neon-red);
    }

    .sj-nav.sj-open {
        display: flex;
    }

    .sj-hamburger {
        display: flex;
    }

    .sj-star-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sj-movie-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sj-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Laptop: 1024px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .sj-nav li a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

/* Desktop: 1440px+ */
@media (min-width: 1440px) {
    .sj-container {
        padding: 0 40px;
    }
}

/* --- Utility Classes --- */
.sj-text-center { text-align: center; }
.sj-text-neon-red { color: var(--sj-neon-red); }
.sj-text-neon-yellow { color: var(--sj-neon-yellow); }
.sj-text-neon-blue { color: var(--sj-neon-blue); }
.sj-text-gray { color: var(--sj-gray); }
.sj-mt-20 { margin-top: 20px; }
.sj-mb-20 { margin-bottom: 20px; }
.sj-mt-40 { margin-top: 40px; }
.sj-mb-40 { margin-bottom: 40px; }

/* --- Loading Animation --- */
.sj-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sj-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.sj-loading.sj-hidden {
    opacity: 0;
    pointer-events: none;
}

.sj-loading-text {
    font-size: 2rem;
    color: var(--sj-neon-red);
    animation: sj-neon-flicker 2s linear infinite;
}
