:root {
    --bg-color: #050507;
    --primary: #6c00ff;
    --primary-glow: rgba(108, 0, 255, 0.6);
    --secondary: #00d2ff;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.buy-btn-small {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
}

.buy-btn-small:hover {
    box-shadow: 0 0 15px var(--primary-glow);
    color: #fff !important;
}

.discord-btn {
    background: #5865F2;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.discord-btn:hover {
    background: #4752C4;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
    color: #fff !important;
}

.discord-hero-btn {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.discord-hero-btn:hover {
    background: #4752C4;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero .sub-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.w-100 {
    width: 100%;
}

.glow-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}

.glow-btn:hover {
    background: #7a15ff;
    box-shadow: 0 0 30px var(--primary-glow), 0 0 10px var(--secondary);
}

.secondary-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--primary);
}

.secondary-btn:hover {
    background: rgba(108, 0, 255, 0.1);
}

/* Sections */
section {
    padding: 100px 5%;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Cards / Features */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(108, 0, 255, 0.2);
}

.card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.cleaner-card {
    border-color: rgba(0, 210, 255, 0.3);
}

.cleaner-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15);
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(108,0,255,0.1) 0%, var(--card-bg) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li i {
    color: var(--secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    background: rgba(5, 5, 7, 0.5);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .glitch {
        font-size: 3rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .cards-container {
        grid-template-columns: 1fr;
    }
}
