* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', 'Orbitron', sans-serif;
    background: radial-gradient(ellipse at 30% 40%, #051a2d 0%, #020b14 70%);
    color: #c8e0ff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Global Elements ===== */
button {
    transition: all 0.2s ease;
    font-family: 'Exo 2', 'Orbitron', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: color 0.2s ease;
    color: #00f0ff;
}

a:hover {
    color: #c8e0ff;
}

::selection {
    background: rgba(0, 240, 255, 0.25);
    color: #c8e0ff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020b14;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00f0ff;
}

/* ===== Detail Page Shared Header ===== */
.detail-header {
    background: rgba(15, 25, 40, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.25);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: inset 0 0 20px rgba(0,240,255,0.05), 0 0 15px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00f0ff;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0,240,255,0.4);
}

.brand-logo:hover {
    color: #c8e0ff;
}

.back-btn {
    color: #00f0ff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 2px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: rgba(0,240,255,0.15);
    box-shadow: 0 0 12px rgba(0,240,255,0.3);
}

/* ===== Classified Ad ===== */
.classified-ad {
    border: 1px dashed rgba(0, 240, 255, 0.25);
    background: rgba(0,30,50,0.35);
    padding: 12px;
    margin: 24px 0;
    text-align: center;
    border-radius: 4px;
}

.classified-ad-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7a9ab8;
    margin-bottom: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .detail-header {
        padding: 10px 16px;
    }
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .brand-logo {
        font-size: 18px;
    }
}