* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    background-color: #0b0c10;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Global Elements ===== */
button {
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all 0.2s ease;
    color: #00f0ff;
}

a:hover {
    color: #ff2d95;
    text-shadow: 0 0 8px #ff2d95;
}

::selection {
    background: rgba(0, 240, 255, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0c10;
}

::-webkit-scrollbar-thumb {
    background: #00f0ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff2d95;
}

/* ===== Detail Page Shared ===== */
.detail-header {
    background: rgba(11,12,16,0.98);
    border-bottom: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: 18px;
    font-weight: 900;
    color: #ff2d95;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #ff2d95;
}

.brand-logo:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

.back-btn {
    color: #00f0ff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px solid #00f0ff;
    transition: all 0.2s;
    font-family: 'Orbitron', sans-serif;
}

.back-btn:hover {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
}

/* ===== Classified Ad ===== */
.classified-ad {
    border: 1px dashed rgba(0, 240, 255, 0.3);
    background: rgba(20, 20, 30, 0.5);
    padding: 12px;
    margin: 24px 0;
    text-align: center;
}

.classified-ad-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f0ff;
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .detail-header {
        padding: 10px 16px;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .brand-logo {
        font-size: 14px;
    }
}