/* --- GLOBAL STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f15;
    color: #ffffff;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(11, 15, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e2630;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo span {
    color: #4a80f0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.discord-btn {
    background-color: #5865F2;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, rgba(74, 128, 240, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content h1 span {
    color: #4a80f0;
}

.hero-content p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* --- BUTTONS --- */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 15px;
}

.primary-btn {
    background-color: #4a80f0;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #3b6cdb;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: #12161c;
    color: #ffffff;
    border: 1px solid #1e2630;
}

.secondary-btn:hover {
    background-color: #1a222d;
    border-color: #4a80f0;
}

/* --- PRODUCTS GRID (MAIN PAGE) --- */
.products {
    padding: 100px 8%;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.products h2 span {
    color: #4a80f0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: left;
}

.card {
    background-color: #12161c;
    border: 1px solid #1e2630;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: #4a80f0;
    transform: translateY(-5px);
}

.card.popular {
    border-color: #4a80f0;
    box-shadow: 0 0 20px rgba(74, 128, 240, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-badge.undetected {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.subtitle {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #4a80f0;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card ul li {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul li i {
    color: #4a80f0;
    font-size: 12px;
}

.card-btn {
    width: 100%;
    justify-content: center;
    background-color: #1a222d;
    color: #ffffff;
    border: 1px solid #283544;
}

.card-btn:hover {
    background-color: #4a80f0;
    border-color: #4a80f0;
}

/* --- PAYMENTS & FEATURES --- */
.payments, .features {
    padding: 80px 8%;
    background-color: #0d1117;
    text-align: center;
}

.payment-grid, .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.payment-box, .feature-box {
    background-color: #12161c;
    border: 1px solid #1e2630;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.payment-box i, .feature-box i {
    font-size: 32px;
    color: #4a80f0;
    margin-bottom: 15px;
}

.payment-box h3, .feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.payment-box p, .feature-box p {
    color: #94a3b8;
    font-size: 13px;
}

/* --- STATUS PAGE STYLING --- */
.status-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-row {
    background-color: #12161c;
    border: 1px solid #1e2630;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.status-row:hover {
    border-color: #4a80f0;
}

.product-name {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.online {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* --- FOOTER --- */
footer {
    padding: 30px 8%;
    text-align: center;
    border-top: 1px solid #1e2630;
    color: #64748b;
    font-size: 14px;
    background-color: #0b0f15;
}