:root {
    --bg-dark: #0a0e17;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --accent-cyan: #00f5ff;
}

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

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(10, 14, 23, 0.7), rgba(10, 14, 23, 0.7)), url('../background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.dashboard {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-5px);
}

.hero {
    text-align: center;
}

.main-vignette {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sub-detail {
    font-size: 0.9rem;
    letter-spacing: 0.5rem;
    color: var(--gold);
    font-weight: 300;
}

#main-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--gold);
    /* Fallback for older browsers */
    margin-bottom: 0.5rem;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
    #main-title {
        background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.greeting {
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.label {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.value {
    font-size: 2.5rem;
    font-weight: 700;
}

.quote-card {
    text-align: center;
    font-style: italic;
    color: var(--text-dim);
    font-weight: 300;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.main-vignette {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 600px) {
    .dashboard {
        width: 95%;
    }

    .value {
        font-size: 2rem;
    }
}