* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #121212;
    background-image: radial-gradient(circle at 100% 100%, rgba(255,0,0,0.1) 0%, transparent 60%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Global Elements ===== */
button {
    transition: all 0.2s ease;
    font-family: 'Oswald', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: color 0.2s ease;
    color: #ff3333;
}

a:hover {
    color: #ffcc00;
}

::selection {
    background: rgba(255,51,51,0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff3333;
}

/* ===== Detail Page Shared Header ===== */
.detail-header {
    background: linear-gradient(180deg, #1a1a1a, #121212);
    border-bottom: 3px solid #ff3333;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    font-family: 'Fjalla One', sans-serif;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-logo:hover {
    color: #ffcc00;
}

.back-btn {
    color: #ff3333;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border: 2px solid #ff3333;
    transition: all 0.2s;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    border-radius: 2px;
}

.back-btn:hover {
    background: #ff3333;
    color: white;
}

/* ===== Darkroom Ad ===== */
.darkroom-ad {
    border: 1px dashed #666666;
    background: rgba(26,26,26,0.5);
    padding: 12px;
    margin: 24px 0;
    text-align: center;
}

.darkroom-ad-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .detail-header {
        padding: 10px 16px;
    }
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .brand-logo {
        font-size: 18px;
    }
}