:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --blue: #0088ff;
    --blue-glow: rgba(0, 136, 255, 0.3);
    --gray-dark: #1a1a1a;
    --gray-mid: #333;
    --gray-light: #888;
    --font-heading: 'Arial Black', 'Helvetica Neue', sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: 'Consolas', 'Courier New', monospace;
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 6px 6px;
    pointer-events: none;
    z-index: 9999;
}

/* ============================================
   NAVIGATION - Mobile First
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--blue);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
}

.nav-brand span {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--blue);
    border-color: var(--blue);
}

.nav-links a.active {
    background: var(--blue);
    color: var(--black);
}

.btn-order {
    background: var(--blue);
    color: var(--black) !important;
    border-radius: var(--radius);
}

/* ============================================
   PAGE HEADER - Mobile First
   ============================================ */
.page-header {
    padding: 6rem 1rem 1rem;
    position: relative;
    border-bottom: 2px solid var(--gray-mid);
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.game-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.header-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1rem;
}

.badge {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-2deg);
}

.badge.caution {
    border-color: #ffcc00;
    color: #ffcc00;
}

.badge.bio {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(0, 136, 255, 0.1);
}

.badge.danger {
    border-color: #ff4444;
    color: #ff4444;
}

/* ============================================
   SEARCH - Mobile First
   ============================================ */
.search-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    background: var(--gray-dark);
    border: 2px solid var(--gray-mid);
    padding: 0.6rem 0.75rem;
}

.search-box:focus-within {
    border-color: var(--blue);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--gray-light);
}

/* ============================================
   NOTES PANEL - Mobile First
   ============================================ */
.notes-panel {
    margin: 0 1rem 1rem;
    background: var(--gray-dark);
    border: 2px solid var(--blue);
    padding: 0.75rem;
    font-size: 0.75rem;
    position: relative;
}

.notes-panel h4 {
    font-family: var(--font-mono);
    color: var(--blue);
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.notes-panel p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.notes-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 1rem;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--gray-mid);
}

.section-divider:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.section-icon {
    font-size: 1rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRICING BOARD - Mobile First
   ============================================ */
.pricing-board {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* Groups */
.group {
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-mid);
    background: var(--gray-dark);
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    background: var(--gray-dark);
    border: none;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: background 0.2s;
}

.group-header:hover {
    background: var(--gray-mid);
}

.group-header::after {
    content: '▼';
    font-size: 0.55rem;
    color: var(--blue);
    transition: transform 0.2s;
}

.group.collapsed .group-header::after {
    transform: rotate(-90deg);
}

.group.collapsed .group-content {
    display: none;
}

.group-content {
    border-top: 1px solid var(--gray-mid);
}

/* Price Rows */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    transition: background 0.15s;
    gap: 0.5rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(0, 136, 255, 0.08);
}

.price-row.hidden {
    display: none;
}

.service-name {
    font-size: 0.75rem;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.price-tag {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--blue);
    font-size: 0.7rem;
    white-space: nowrap;
    background: rgba(0, 136, 255, 0.1);
    padding: 0.15rem 0.35rem;
    border: 1px solid var(--blue);
    flex-shrink: 0;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-light);
    display: none;
}

.no-results.show {
    display: block;
}

/* Footer */
footer {
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 1px solid var(--gray-mid);
}

footer p {
    font-size: 0.75rem;
    color: var(--gray-light);
}

/* ============================================
   DESKTOP STYLES (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .page-header {
        padding: 7rem 1.5rem 2rem;
    }

    .header-badges {
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 0;
        justify-content: flex-end;
    }

    .badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .game-tag {
        font-size: 0.7rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .search-wrap {
        padding: 1.5rem;
    }

    .search-box {
        padding: 0.75rem 1rem;
    }

    .search-box input {
        font-size: 1rem;
    }

    .notes-panel {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        max-width: 280px;
        transform: rotate(1deg);
        margin: 0;
        padding: 1rem;
        font-size: 0.8rem;
        z-index: 100;
    }

    .notes-panel h4 {
        font-size: 0.7rem;
    }

    .section-divider {
        padding: 1.25rem 0 0.75rem;
    }

    .section-icon {
        font-size: 1.1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .pricing-board {
        padding: 0 1.5rem 4rem;
    }

    .group {
        margin-bottom: 0.75rem;
    }

    .group-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .group-header::after {
        font-size: 0.65rem;
    }

    .price-row {
        padding: 0.65rem 1.25rem;
    }

    .service-name {
        font-size: 0.85rem;
        padding-right: 1rem;
    }

    .price-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.45rem;
    }

    .no-results {
        padding: 3rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}