
:root {
    --bg-dark: #050505;
    --bg-soft: #080d14;
    --bg-card: #0f1218;
    --accent: #007bff;
    --accent-light: #00d4ff;
    --accent-deep: #003f8f;
    --text-main: #ffffff;
    --text-dim: #8fa3ad;
    --success: #2ecc71;
    --danger: #e74c3c;
    --card-border: #1a222d;
    --shadow-blue: 0 20px 60px rgba(0, 123, 255, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.22), transparent 34rem),
        linear-gradient(180deg, #050505 0%, #07101b 46%, #050505 100%);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

button,
a,
input {
    font: inherit;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px clamp(18px, 6vw, 10%);
    background: rgba(0, 0, 0, 0.78);
    border-bottom: 1px solid rgba(0, 212, 255, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.logo {
    color: var(--text-main);
    font-size: clamp(1.25rem, 4vw, 1.9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-light);
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.65);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.06);
}

.cart-link {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #00111f !important;
    box-shadow: 0 0 22px rgba(0, 123, 255, 0.35);
}

.cart-link:hover {
    transform: translateY(-2px);
}

.shop-header {
    min-height: 560px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 76px 20px 92px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.18);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 15, 30, 0.7)),
        #050505;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.38;
    z-index: 0;
    pointer-events: none;
}

.shop-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 15, 30, 0.7)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), #050505);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    width: min(1080px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-heading p {
    color: var(--accent-light);
    margin: 0 0 10px;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-header h1 {
    font-size: clamp(4rem, 13vw, 8.5rem);
    line-height: 0.92;
    margin: 0;
    color: white;
    text-shadow: 0 0 36px rgba(0, 123, 255, 0.72);
}

.hero-copy {
    max-width: 660px;
    margin: 22px 0 0;
    color: #d9edf7;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.server-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.ip-button {
    width: auto;
    min-width: 190px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.55);
    color: var(--text-main);
    box-shadow: var(--shadow-blue);
}

#copy-status {
    display: none;
    color: var(--success);
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px 72px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: -82px;
    margin-bottom: 58px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 12px;
    background: var(--card-border);
    box-shadow: var(--shadow-blue);
    position: relative;
    z-index: 5;
}

.stats-bar div {
    background: rgba(8, 13, 20, 0.94);
    padding: 22px;
}

.stats-bar strong {
    display: block;
    color: var(--accent-light);
    font-size: 1.45rem;
    line-height: 1;
}

.stats-bar span {
    color: var(--text-dim);
    font-weight: 700;
}

.shop-section {
    margin-top: 58px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2 {
    color: var(--text-main);
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.item-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    transition: 0.25s ease;
}

.item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 3px solid transparent;
    pointer-events: none;
}

.item-card:hover {
    border-color: rgba(0, 212, 255, 0.72);
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 123, 255, 0.18);
}

.item-card:hover::before {
    border-top-color: var(--accent-light);
}

.item-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #05080d;
    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: inset 0 0 24px rgba(0, 123, 255, 0.12);
}

.item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.06);
    filter: brightness(1.08) saturate(1.12);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0, 123, 255, 0.14);
    color: var(--accent-light);
    border: 1px solid rgba(0, 212, 255, 0.25);
    margin-bottom: 18px;
}

.item-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.price {
    font-size: clamp(1.7rem, 4vw, 2.25rem);
    font-weight: 900;
    color: white;
    margin: 14px 0;
    display: block;
}

.item-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.item-card ul li {
    color: var(--text-dim);
    margin-bottom: 10px;
    font-size: 0.96rem;
}

.item-card ul li::before {
    content: ">";
    color: var(--accent-light);
    margin-right: 10px;
    font-weight: 900;
}

.item-card.premium {
    border: 1px solid rgba(0, 212, 255, 0.75);
    background:
        linear-gradient(180deg, rgba(0, 123, 255, 0.22), rgba(0, 63, 143, 0.12)),
        var(--bg-card);
}

.badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: var(--accent-light);
    color: #00111f;
    padding: 5px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.74rem;
    text-transform: uppercase;
    z-index: 4;
}

.compact {
    min-height: 100%;
}

button {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #00111f;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: 0.25s ease;
}

button:hover {
    filter: brightness(1.09);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.38);
    transform: translateY(-2px);
}

.cart-panel {
    margin-top: 70px;
}

.cart-container {
    background: rgba(15, 18, 24, 0.92);
    padding: clamp(22px, 4vw, 36px);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.32);
    box-shadow: var(--shadow-blue);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #1a222d;
}

.cart-item strong {
    color: var(--text-main);
}

.cart-item span {
    color: var(--text-dim);
    font-weight: 800;
}

.remove-btn {
    width: 38px;
    min-height: 38px;
    padding: 0;
    background: rgba(231, 76, 60, 0.16);
    color: #ff9a8f;
    border: 1px solid rgba(231, 76, 60, 0.35);
}

.empty-cart {
    color: var(--text-dim);
    margin: 0 0 18px;
}

.promo-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 24px;
}

#promo-code {
    width: 100%;
    background: #000;
    border: 1px solid var(--card-border);
    color: white;
    padding: 13px 14px;
    border-radius: 8px;
    outline: none;
}

#promo-code:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.08);
}

.promo-btn {
    width: auto;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--card-border);
    font-size: 1.15rem;
}

.cart-summary strong {
    color: var(--accent-light);
    font-size: 1.45rem;
}

.checkout-btn {
    background: #fff;
    color: #000;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: var(--accent-light);
}

.footer {
    border-top: 1px solid var(--card-border);
    color: var(--text-dim);
    text-align: center;
    padding: 28px 20px;
    background: #030303;
}

.footer p {
    margin: 0;
}

@media (max-width: 760px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links a {
        font-size: 0.88rem;
        padding: 8px 10px;
    }

    .shop-header {
        min-height: 520px;
        padding-top: 62px;
    }

    .hero-bg {
        opacity: 0.28;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        margin-top: -64px;
    }

    .section-heading {
        display: block;
    }

    .item-image {
        aspect-ratio: 4 / 3;
    }

    .promo-row,
    .cart-item {
        grid-template-columns: 1fr;
    }

    .promo-btn,
    .remove-btn {
        width: 100%;
    }
}

.promo-info {
    margin: 16px 0 0;
    color: var(--success);
    font-weight: 800;
}