* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, #1e5631 0%, #2d7a3d 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Global Elements ===== */
button {
    transition: all 0.2s ease;
    font-family: 'Oswald', 'Impact', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: color 0.2s ease;
    color: #fbc02d;
}

a:hover {
    color: #fff;
}

::selection {
    background: rgba(251, 192, 45, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    background: #fbc02d;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* ===== Detail Page Shared Header ===== */
.detail-header {
    background: rgba(0,0,0,0.5);
    border-bottom: 3px solid #fbc02d;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-logo:hover {
    color: #fbc02d;
}

.back-btn {
    color: #fbc02d;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 7px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    border-radius: 4px;
}

.back-btn:hover {
    background: #fbc02d;
    color: #000;
    border-color: #fbc02d;
}

/* ===== Board Ad ===== */
.board-ad {
    border: 1px dashed rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.2);
    padding: 12px;
    margin: 24px 0;
    text-align: center;
    border-radius: 4px;
}

.board-ad-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    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: 16px;
    }
}