/* ===== Cyberpunk Global Styles ===== */
/* Import Tech Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Deep Black Background + Grid Texture ===== */
body {
    font-family: 'Share Tech Mono', monospace;
    background: #050510;
    background-image:
        linear-gradient(rgba(26,26,46,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,26,46,0.4) 1px, transparent 1px),
        radial-gradient(ellipse at 50% 0%, rgba(255,45,149,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0,240,255,0.08) 0%, transparent 40%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Neon Glow Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #ff2d95;
    text-shadow: 0 0 10px #ff2d95, 0 0 20px rgba(255,45,149,0.5);
}

/* ===== Neon Button Styles ===== */
button {
    font-family: 'Orbitron', sans-serif;
    background: transparent;
    border: 2px solid #00f0ff;
    color: #00f0ff;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00f0ff;
    opacity: 0;
    transition: opacity 0.3s;
}

button:hover {
    border-color: #ff2d95;
    color: #ff2d95;
    box-shadow: 0 0 20px #ff2d95, 0 0 40px rgba(255,45,149,0.4), inset 0 0 15px rgba(255,45,149,0.2);
    text-shadow: 0 0 8px #ff2d95;
}

button:hover::before {
    opacity: 0.1;
}

button:active {
    transform: scale(0.98);
    box-shadow: 0 0 30px #ff2d95, 0 0 60px rgba(255,45,149,0.6);
}

/* ===== Neon Link Styles ===== */
a {
    color: #00f0ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff2d95;
    transition: width 0.3s ease;
}

a:hover {
    color: #ff2d95;
    text-shadow: 0 0 8px #ff2d95, 0 0 15px rgba(255,45,149,0.5);
}

a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, #ff2d95, #00f0ff);
}

/* ===== Neon Text Selection ===== */
::selection {
    background: rgba(255, 45, 149, 0.3);
    color: #ffffff;
    text-shadow: 0 0 5px #ff2d95;
}

::-moz-selection {
    background: rgba(255, 45, 149, 0.3);
    color: #ffffff;
    text-shadow: 0 0 5px #ff2d95;
}

/* ===== Neon Scrollbar Styles ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #050510;
    border: 1px solid rgba(0,240,255,0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff2d95, #00f0ff);
    border: 2px solid #050510;
    border-radius: 6px;
    box-shadow: 0 0 10px #ff2d95, 0 0 5px #00f0ff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00f0ff, #ff2d95);
    box-shadow: 0 0 15px #00f0ff, 0 0 30px rgba(255,45,149,0.5);
}

::-webkit-scrollbar-corner {
    background: #050510;
}

/* ===== Image Styles ===== */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ===== Focus States with Neon Glow ===== */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ff2d95;
    box-shadow: 0 0 15px rgba(255,45,149,0.4), 0 0 5px #00f0ff;
}

/* ===== Detail Page Shared Header ===== */
.detail-header {
    background: rgba(10,15,25,0.95);
    border-bottom: 2px solid #ff2d95;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgba(255,45,149,0.3);
    backdrop-filter: blur(10px);
}

.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: 22px;
    font-weight: 900;
    color: #ff2d95;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px #ff2d95;
}

.brand-logo:hover {
    text-shadow: 0 0 15px #ff2d95;
}

.back-btn {
    color: #00f0ff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px solid #00f0ff;
    transition: all 0.2s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.back-btn:hover {
    background: #00f0ff;
    color: #050510;
    box-shadow: 0 0 15px #00f0ff;
}

/* ===== Arena Ad ===== */
.arena-ad {
    border: 1px dashed rgba(0,240,255,0.3);
    background: rgba(10,15,25,0.5);
    padding: 12px;
    margin: 24px 0;
    text-align: center;
    border-radius: 6px;
}

.arena-ad-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f0ff;
    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;
    }
}