* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

/* Global Elements */
button {
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: color 0.2s ease;
    color: #2c2c2c;
}

a:hover {
    color: #b8860b;
}

::selection {
    background: #b8860b;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fafafa;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8860b;
}

/* Detail Page Shared Header */
.detail-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-logo:hover {
    color: #b8860b;
}

.back-btn {
    color: #666666;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 1px solid #ddd;
    transition: all 0.2s;
    text-transform: uppercase;
}

.back-btn:hover {
    border-color: #b8860b;
    color: #b8860b;
}

/* Minimal Ad */
.minimal-ad {
    border: 1px dashed #ddd;
    background: #fafafa;
    padding: 12px;
    margin: 30px 0;
    text-align: center;
}

.minimal-ad-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 640px) {
    .detail-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .header-logo {
        font-size: 16px;
    }
}