@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --border-color: #1a1a1a;
    --border-light: #2a2a2a;
    --text-main: #ffffff;
    --text-muted: #888888;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.landing-body {
    background-color: #030712;
    background-image:
        radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.15) 0%, rgba(3, 7, 18, 0) 60%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100px 100px, 100px 100px;
    background-position: center top, center center, center center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}


.pill-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 25, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: 100px;
    padding: 8px 14px 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1050px;
    max-width: 95vw;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.12), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.pill-header .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.main-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}


.center-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 2;
}

.center-nav a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 100px;
}

.center-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.header-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.header-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 15px;
}

.btn-white {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-white:hover {
    background: var(--primary-blue-hover);
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.2s;
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}


.section-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 80px auto;
}

.hero {
    margin-top: 180px;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-title span {
    color: var(--text-muted);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.content-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: rgba(10, 15, 35, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.06);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.product-item:last-child {
    border-bottom: none;
}

.p-price {
    display: inline-block;
    width: 45px;
    color: #fff;
    font-weight: 600;
}

.bundle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(10, 15, 35, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.06);
}

.bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.2), inset 0 0 15px rgba(37, 99, 235, 0.1);
}

.bundle-card.highlight {
    border-color: rgba(37, 99, 235, 0.45);
    background: rgba(10, 15, 35, 0.7);
}

.b-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b-header {
    margin-bottom: 24px;
}

.b-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.b-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.strike {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 8px;
}

.b-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.b-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.b-features li::before {
    content: '✓';
    color: #4ade80;
    margin-right: 10px;
    font-weight: bold;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pay-card {
    background: rgba(10, 15, 35, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.25);
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.05);
}

.pay-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
}

.pay-card h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.pay-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.solid-panel {
    background: rgba(15, 20, 40, 0.85);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 99, 235, 0.1);
}

.discord-icon {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
    display: inline-block;
}

.btn-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #5865F2;
    width: 100%;
    padding: 14px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
    white-space: nowrap;
}

.btn-discord:hover {
    background: #4752C4;
    transform: scale(1.02);
}

.navbar:not(.pill-header) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    width: 100%;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}

.header-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(15, 20, 40, 0.7);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.18);
}

.stat-box h3 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-box p {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 15, 35, 0.7);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

th,
td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    font-size: 14px;
}

th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

.btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-blue-hover);
}

.btn-edit {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    font-size: 12px;
    margin-right: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-delete {
    background: transparent;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-base);
    color: var(--text-main);
    font-size: 14px;
    transition: 0.2s;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: 20px;
    width: 600px;
    border: 1px solid var(--border-color);
}