@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    --bg-dark: #08080a;
    --neon-green: #76ff03;
    --neon-orange: #ff3d00;
    --neon-cyan: #00e5ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 10px rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Particle Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Floating Top-Bar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.ip-tracker {
    color: var(--neon-green);
    background: rgba(118, 255, 3, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid rgba(118, 255, 3, 0.3);
    box-shadow: 0 0 15px rgba(118, 255, 3, 0.1);
    cursor: pointer;
}

/* Main Layout */
.dashboard {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem 5rem 2rem;
}

/* Hero Section */
.hero-container {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    filter: drop-shadow(0 0 50px rgba(255, 61, 0, 0.2));
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Category Switcher */
.category-switcher {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cat-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-cyan);
}

.cat-btn.active-cat {
    background: var(--neon-orange);
    color: white;
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.3);
}

/* Glass Main Container */
.glass-container {
    width: 100%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Product Cards */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glow-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.glow-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Color Themes */
.glow-creeper:hover { border-color: var(--neon-green); box-shadow: 0 0 30px rgba(118, 255, 3, 0.2); }
.glow-herobrine:hover { border-color: var(--neon-orange); box-shadow: 0 0 30px rgba(255, 61, 0, 0.2); }
.glow-warden:hover { border-color: var(--neon-cyan); box-shadow: 0 0 30px rgba(0, 229, 255, 0.2); }

.glow-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.glow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.glow-card .features {
    list-style: none;
    margin: 1.5rem 0;
    color: #abaeb4;
    font-size: 0.9rem;
    text-align: left;
}

.glow-card .features li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glow-card .features li::before {
    content: '◈';
    color: var(--neon-orange);
    font-size: 0.8rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: block;
}

/* Neon Buttons */
.btn-neon {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    background: #fff;
    color: #000;
    transition: 0.3s;
}

.glow-creeper .btn-neon { background: var(--neon-green); box-shadow: 0 0 20px rgba(118, 255, 3, 0.4); }
.glow-herobrine .btn-neon { background: var(--neon-orange); box-shadow: 0 0 20px rgba(255, 61, 0, 0.4); }
.glow-warden .btn-neon { background: var(--neon-cyan); box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }

.btn-neon:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.security-status {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.security-status svg { width: 14px; height: 14px; fill: currentColor; }

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #111;
    border: 1px solid var(--neon-cyan);
    border-radius: 24px;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

.modal-input {
    width: 100%;
    background: #000;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: white;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    transition: 0.3s;
}

.modal-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.status-msg {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.5s ease;
}

.status-success {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.status-error {
    background: rgba(255, 61, 0, 0.1);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
footer {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Vault Specifics */
.vault-amber {
    border-color: #ffcc00 !important;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.1) !important;
}

.stat-card {
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.donation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1rem;
}

.qr-frame-mini {
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .navbar { display: none; }
    .glass-container { padding: 1.5rem; }
    .hero-image { max-width: 100%; }
}
