
:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --purple-primary: #8b5cf6;
    --purple-hover: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.5);
    --border-color: #27272a;
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

h1, h2, h3, .logo, .badge, .price-tag {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

body { 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    overflow-x: hidden; 
    position: relative;
    cursor: none !important;
}

a, button, .btn { cursor: none !important; }

.purple { color: var(--purple-primary); }
.purple-glow { 
    background: linear-gradient(to right, #c084fc, #8b5cf6); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--purple-glow));
}


.background-container {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden; background: #050505;
}
.grid-overlay {
    position: absolute; width: 200%; height: 200%; top: -50%; left: -50%;
    background-image: linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px; transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}
@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}
.ambient-light {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
    animation: floatLight 10s infinite alternate ease-in-out;
}
.light-1 { width: 500px; height: 500px; background: #4c1d95; top: -100px; left: -100px; }
.light-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -100px; right: -100px; animation-delay: -5s; }
@keyframes floatLight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #fff; }
.btn-discord {
    background: #5865F2; color: white !important; padding: 8px 20px; border-radius: 5px; transition: 0.3s;
}
.btn-discord:hover { background: #4752c4; box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }


.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: space-between;
    padding: 0 10%; position: relative;
}
.hero-content { max-width: 550px; z-index: 1; }
.badge {
    background: rgba(139, 92, 246, 0.1); color: var(--purple-primary);
    padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    display: inline-block; margin-bottom: 20px; border: 1px solid var(--purple-glow);
}
.hero h1 { 
    font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; 
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }
.hero-btns { display: flex; gap: 15px; }

.btn { padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary { background: var(--purple-primary); color: white; box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
.btn-primary:hover { background: var(--purple-hover); transform: translateY(-2px); box-shadow: 0 0 30px rgba(139, 92, 246, 0.5); }
.btn-secondary { background: transparent; border: 1px solid var(--border-color); color: white; }
.btn-secondary:hover { border-color: var(--purple-primary); background: rgba(139, 92, 246, 0.05); }


.hero-image-container {
    perspective: 1000px; width: auto; max-width: 800px;
    display: flex; justify-content: center; align-items: center; z-index: 2; padding: 20px;
}
.tilt-card {
    width: fit-content; height: fit-content; position: relative;
    transform-style: preserve-3d; transition: transform 0.1s ease-out; margin: 0 auto;
}
.card-content {
    width: fit-content; height: fit-content; background: transparent;
    border: none; box-shadow: none; transform-style: preserve-3d; transform: translateZ(0); line-height: 0;
}
.menu-img {
    display: block; width: 100%; height: auto; object-fit: contain;
    border-radius: 12px; border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}
.glare {
    position: absolute; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%; pointer-events: none; mix-blend-mode: overlay;
    transform: translate(-50%, -50%); opacity: 0; z-index: 10;
}
.floating-badge {
    position: absolute; bottom: -15px; right: -15px; background: #8b5cf6;
    color: white; padding: 8px 16px; border-radius: 8px; font-weight: 800; font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); transform: translateZ(50px);
}


.features { padding: 100px 10%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 30px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-10px); border-color: var(--purple-primary);
    background: rgba(139, 92, 246, 0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.purple-icon { font-size: 2rem; color: var(--purple-primary); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }


.pricing { padding: 50px 10% 100px; text-align: center; }
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 50px; border-radius: 20px;
    max-width: 500px; margin: 0 auto;
    position: relative; overflow: hidden; transition: 0.3s;
}
.pricing-card:hover {
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6; transform: translateY(-5px);
}
.price-tag {
    font-size: 4.5rem; font-weight: 800; color: #fff;
    margin-bottom: 5px; text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}
.pricing-card h3 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 30px; }
.pricing-features {
    list-style: none; text-align: left; margin-bottom: 30px; padding: 0 20px;
}
.pricing-features li {
    margin-bottom: 15px; color: #fff; display: flex; align-items: center; gap: 10px;
}
.pricing-features li i { color: #8b5cf6; }
.pricing-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-btn { width: 100%; display: block; }


footer { padding: 40px; text-align: center; border-top: 1px solid var(--border-color); background: #050505; position: relative; z-index: 10; }
footer p { color: var(--text-muted); margin-top: 10px; font-size: 0.9rem; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #4c1d95; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8b5cf6; }

.cursor-dot {
    width: 6px; height: 6px; background-color: white;
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-outline {
    width: 30px; height: 30px; border: 1px solid rgba(139, 92, 246, 0.5);
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9998; pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    transition-timing-function: ease-out;
}
body.hovering .cursor-outline {
    width: 50px; height: 50px;
    background-color: rgba(139, 92, 246, 0.1); border-color: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { margin-bottom: 50px; }
    .hero-btns { justify-content: center; }
    .hero-image-container { width: 100%; aspect-ratio: auto; }
    .nav-links { display: none; }
    .cursor-dot, .cursor-outline { display: none; }
    body, a, button { cursor: auto !important; }
}