:root {
    --bg: #000000;
    --card: rgba(50, 0, 0, 0.2);
    --accent: #ff0000;
    --accent-dark: #aa0000;
    --text: #ffffff;
    --muted: #888;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Courier New', monospace;
    margin: 0;
    overflow-x: hidden;
    perspective: 1000px;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

header h1 {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
    margin: 0;
}

nav {
    background: rgba(20,0,0,0.5);
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

nav a {
    color: #eee;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.hero {
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero h2 {
    font-size: 3.5em;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product {
    background: var(--card);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,0,0,0.2);
    box-shadow: 0 0 20px rgba(255,0,0,0.3);
    transition: transform 0.3s ease-out;
    transform: 
        rotateX(var(--rotateX, 0deg)) 
        rotateY(var(--rotateY, 0deg)) 
        translateZ(20px);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
}

.product h3 {
    color: var(--accent);
    margin: 15px 0 10px;
}

.price {
    font-size: 1.8em;
    color: var(--accent);
    font-weight: bold;
}

.free {
    color: #0f0;
    font-size: 1.6em;
    font-weight: bold;
}

.buy-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 15px;
}

.buy-btn:hover {
    background: #ff3333;
    box-shadow: 0 0 20px var(--accent);
}

.free-btn {
    background: #008000;
}

.free-btn:hover {
    box-shadow: 0 0 20px #0f0;
}

.discord-link {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
}

.contact-box {
    background: var(--card);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px;
    border: 2px solid var(--accent);
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 0 30px rgba(255,0,0,0.5);
}

.contact-box h2 {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
    font-size: 2.8em;
}

footer {
    text-align: center;
    padding: 60px;
    opacity: .6;
    border-top: 1px solid rgba(255,0,0,0.2);
}