:root {
    --bg-main: #0a0a0f;
    --bg-card: rgba(18, 18, 28, 0.85);
    --bg-card-border: rgba(255, 30, 60, 0.25);
    --accent-red: #ff1e3c;
    --accent-crimson: #ff0055;
    --accent-yellow: #ffb800;
    --text-main: #f0f0f5;
    --text-muted: #9595a8;
    --glow-red: 0 0 25px rgba(255, 30, 60, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 30, 60, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(255, 0, 85, 0.06) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    overflow-x: hidden;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 8, 0.92);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-modal-card {
    background: #11111a;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 40px rgba(255, 30, 60, 0.4);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 36px 28px;
    text-align: center;
    animation: modalPulse 3s infinite ease-in-out;
}

@keyframes modalPulse {
    0%, 100% { box-shadow: 0 0 35px rgba(255, 30, 60, 0.35); }
    50% { box-shadow: 0 0 60px rgba(255, 30, 60, 0.6); }
}

.age-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.age-modal-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.age-modal-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-track-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #ddd;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.enter-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff1e3c, #b3002d);
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 30, 60, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 30, 60, 0.65);
}

.exit-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.exit-link:hover {
    color: #fff;
}

.sound-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: rgba(18, 18, 28, 0.9);
    border: 1px solid var(--accent-red);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: transform 0.2s, background 0.2s;
}

.sound-toggle:hover {
    transform: scale(1.06);
    background: rgba(255, 30, 60, 0.25);
}

.himan-header {
    border-bottom: 1px solid rgba(255, 30, 60, 0.2);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent-red);
}

.leak-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent-red);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulseAnim 1.4s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px var(--accent-red); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.himan-content {
    padding: 40px 20px 80px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.headline-box {
    text-align: center;
    margin-bottom: 35px;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 3px;
}

.tag-red {
    background: rgba(255, 30, 60, 0.15);
    color: #ff3355;
    border: 1px solid rgba(255, 30, 60, 0.4);
}

.tag-crimson {
    background: var(--accent-crimson);
    color: #fff;
}

.tag-yellow {
    background: rgba(255, 184, 0, 0.15);
    color: #ffb800;
    border: 1px solid rgba(255, 184, 0, 0.4);
}

.glitch-title {
    font-family: 'Rubik Glitch', 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 30, 60, 0.7),
        2px 2px 0px rgba(255, 0, 85, 0.8),
        -2px -2px 0px rgba(0, 240, 255, 0.5);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.leak-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.leak-description-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 45px;
}

.warning-stripe {
    height: 5px;
    background: repeating-linear-gradient(
        45deg,
        #ff1e3c,
        #ff1e3c 15px,
        #111 15px,
        #111 30px
    );
}

.leak-text {
    padding: 24px 28px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f5f5f7;
}

.leak-text strong {
    color: #ff4d6d;
}

.section-title-wrap {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title-wrap h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    white-space: nowrap;
}

.title-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
}

.media-badge {
    display: inline-block;
    background: #191924;
    border: 1px solid rgba(255, 30, 60, 0.4);
    color: #ff4d6d;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.photo-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.photo-frame {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 30, 60, 0.3);
    box-shadow: 0 0 20px rgba(255, 30, 60, 0.2);
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.photo-frame img:hover {
    transform: scale(1.02);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 30, 60, 0.25);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.himan-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: #07070a;
}

.himan-footer a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
}

.himan-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .leak-text {
        font-size: 1rem;
        padding: 18px 20px;
    }
    .sound-toggle {
        bottom: 16px;
        right: 16px;
        padding: 8px 14px;
    }
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transform: scale(0.8);
    transition: transform 0.25s ease-out;
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-caption {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 15px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px #000;
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    font-family: monospace;
}
.close-lightbox:hover {
    color: #ff1e3c;
}
