:root {
    --primary-color: #00b894;
    /* Vivid Green for buttons/accents */
    --primary-dark: #00604b;
    /* Darker Green for hover/gradients */
    --primary-glow: rgba(0, 184, 148, 0.4);
    --bg-dark: #05100c;
    /* Deepest green-black */
    --bg-light: #0f2e25;
    /* Dark green */
    --text-white: #ffffff;
    --text-gray: #cfd8dc;
    --glass-bg: rgba(10, 30, 25, 0.6);
    --glass-border: rgba(0, 184, 148, 0.2);
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at 50% 0%, var(--bg-light), var(--bg-dark));
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 1rem;
}

/* Canvas Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    opacity: 0.6;
    /* Slight transparency so it's not too distracting */
}

/* Glass Card Container */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: 8px;
    /* Spacing for the border */
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    box-shadow: 0 0 30px -5px var(--primary-glow);
}

.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 4px solid rgba(0, 0, 0, 0.5);
    background: #000;
    /* Fallback */
}

/* Status Badge - positioned on logo */
.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00b894;
    color: #00332a;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(0, 184, 148, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 100px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
}

/* Action Area */
.action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 1.4rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: #00332a;
    /* Dark text for contrast on bright green */
    box-shadow: 0 0 25px -5px var(--primary-glow);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shine 3.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.cta-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    margin-top: 4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}