:root {
    --bg: #090A0F;
    --card: #141722;
    --border: #23283B;
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --success: #10B981;
    --text: #F9FAFB;
    --text-muted: #9CA3AF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--text); font-weight: 700; line-height: 1.2; }
a { color: var(--text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

/* Navigation */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo svg { width: 28px; height: 28px; fill: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn-discord {
    background: #5865F2; color: #fff; padding: 0.6rem 1.2rem; border-radius: 6px;
    font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s;
}
.btn-discord:hover { background: #4752C4; color: #fff; }

/* Status Ticker */
.ticker-wrap {
    background: var(--card); border-bottom: 1px solid var(--border);
    width: 100%; overflow: hidden; height: 40px; display: flex; align-items: center;
}
.ticker {
    display: flex; white-space: nowrap; padding-right: 100%;
    animation: ticker 25s linear infinite; gap: 3rem;
}
.ticker-item { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 8px var(--success); }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* Hero */
.hero { padding: 8rem 5% 6rem; text-align: center; max-w: 800px; margin: 0 auto; position: relative; }
.hero-glow {
    position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px; background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, rgba(9,10,15,0) 70%); z-index: -1;
}
.trustpilot { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--card); padding: 0.5rem 1rem; border-radius: 20px; border: 1px solid var(--border); margin-bottom: 2rem; font-size: 0.9rem; }
.trustpilot span { color: #00B67A; font-weight: bold; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; background: linear-gradient(to right, #fff, #9CA3AF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem; }

/* Product Grid */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 5%; }
.section-title { font-size: 2rem; margin-bottom: 3rem; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.card {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: var(--primary); }
.card-img { width: 100%; height: 180px; background: #1A1E2D; object-fit: cover; border-bottom: 1px solid var(--border); }
.card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 1rem; }
.badge { background: rgba(16, 185, 129, 0.1); color: var(--success); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(16, 185, 129, 0.2); }
.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-features { list-style: none; margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.9rem; flex-grow: 1; }
.card-features li { margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.card-features li::before { content: "✓"; color: var(--primary); font-weight: bold; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.price { font-size: 1.2rem; font-weight: 700; }
.price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.btn-primary { background: var(--primary); color: #fff; padding: 0.6rem 1.2rem; border-radius: 6px; font-weight: 600; text-align: center; cursor: pointer; border: none; transition: background 0.2s; }
.btn-primary:hover { background: var(--primary-hover); color: #fff;}

/* Footer */
footer { background: var(--card); border-top: 1px solid var(--border); padding: 4rem 5% 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { margin-bottom: 1rem; color: #fff; font-size: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; }

/* Content Pages */
.page-header { padding: 6rem 5% 3rem; text-align: center; background: linear-gradient(180deg, rgba(20,23,34,1) 0%, rgba(9,10,15,1) 100%); border-bottom: 1px solid var(--border); }
.content-area { max-width: 800px; margin: 0 auto; padding: 4rem 5%; color: var(--text-muted); font-size: 1.1rem; }
.content-area h2 { color: #fff; margin: 2rem 0 1rem; font-size: 1.8rem; }
.content-area p { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 0.8rem; background: var(--bg); border: 1px solid var(--border); color: #fff; border-radius: 6px; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--primary); }

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified mobile for mockup */
    .hero h1 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
}