:root {
    --bg-color: #0a0a0f;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b5;
    --accent-color: #9d00ff;
    --accent-hover: #b84dff;
    --glass-bg: rgba(25, 20, 35, 0.6);
    --glass-border: rgba(157, 0, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

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

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

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(30, 25, 40, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 15, 0.98);
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 0, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0b2e 0%, var(--bg-color) 70%);
}

.hero-content {
    z-index: 10;
}

.glitch {
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--accent-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.ip-container {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 10, 20, 0.9);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    gap: 1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #00ff66;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

#server-ip {
    font-family: monospace;
    font-size: 1.2rem;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
}

.primary-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 25px rgba(184, 77, 255, 0.6);
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 8rem 5% 4rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About */
.about-content {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Rules */
.rules-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.rules-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list span {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Store */
.store-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.store-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.store-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-new {
    color: #00ff66;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.benefit-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    width: 100%;
    color: var(--text-secondary);
}

.benefit-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.buy-btn {
    width: 100%;
    margin-top: auto;
    background: #00b347;
    color: white;
    box-shadow: 0 0 15px rgba(0, 179, 71, 0.3);
}

.buy-btn:hover {
    background: #00ff66;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #050508;
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid rgba(157, 0, 255, 0.1);
    margin-top: 4rem;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 3.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: circle(0 at top right);
        transition: clip-path 0.5s ease-in-out;
        border-bottom: 1px solid rgba(157, 0, 255, 0.2);
    }

    .nav-links.active {
        clip-path: circle(150% at top right);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .ip-container {
        flex-direction: column;
        border-radius: 16px;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 6rem 5% 3rem;
    }
}