:root {
    --bg-dark: #0a0a0a;
    --accent-success: #00ff88;
    --accent-error: #ff3d71;
    --accent-info: #00d2ff;
    --accent-warning: #ffaa00;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(10, 10, 10, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Wrapper */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(2px);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

/* Content Layout */
.content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 10;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-info);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-info);
    text-transform: uppercase;
}

.badge i {
    animation: spin 3s infinite linear;
}

/* Logo & Text */
.logo-text {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.logo-text span {
    color: var(--accent-info);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Progress Section */
.progress-section {
    margin-bottom: 32px;
    text-align: left;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.percentage {
    color: var(--accent-info);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-info), #3a7bd5);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
    border-radius: 4px;
    position: relative;
    transition: width 1s ease-in-out;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 32px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item i {
    font-size: 20px;
    color: var(--accent-warning);
}

.feature-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.cta-section {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-discord:hover {
    transform: scale(1.05);
    background: #4752c4;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Footer */
.footer {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-align: center;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards ease-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
    }
}
