/* ============================================================================
   ROCK'N SOCIAL - LANDING PAGE HARMONISÉE
   Couleurs identiques à rocknsocial : Or (#ffd700) + Bleu (#00d9ff) + Noir
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === VARIABLES (identiques à rocknsocial) === */
:root {
    --bg-dark: #000000;
    --bg-card: rgba(10, 10, 15, 0.7);
    --gold-primary: #ffd700;
    --gold-secondary: #ffb700;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    --blue-primary: #00d9ff;
    --blue-secondary: #0099ff;
    --blue-gradient: linear-gradient(135deg, #00d9ff 0%, #0099ff 50%, #0066ff 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --shadow-glow-gold: 0 8px 32px rgba(255, 215, 0, 0.3);
    --shadow-glow-blue: 0 8px 32px rgba(0, 217, 255, 0.3);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BODY === */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(0, 217, 255, 0.20) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(0, 217, 255, 0.15) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Effet scintillant animé */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.10) 0%, transparent 40%);
    animation: sparkleBlue 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkleBlue {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.15) rotate(5deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================================================
   HEADER
   ============================================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #00d9ff, #ffd700, #00d9ff, #0099ff) 1;
    padding: 15px 0;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 2px 20px rgba(0, 217, 255, 0.4);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 50px;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
}

.btn-primary {
    background: var(--gold-gradient);
    border: none;
    color: #000000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-primary);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--gold-primary);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-title-main {
    font-size: 64px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.hero-title-sub {
    font-size: 28px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gold-gradient);
    border: none;
    color: #000000;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow-gold);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: var(--blue-primary);
    padding: 16px 43px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-glow-blue);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    min-width: 160px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(0, 217, 255, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 217, 255, 0.4);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-icon {
    font-size: 52px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 217, 255, 0.15),
        inset 0 1px 0 rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 217, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shineBlue 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineBlue {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }
    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-primary);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 217, 255, 0.4);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about {
    padding: 100px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.about-paragraph {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-values {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: start;
    gap: 18px;
    padding: 25px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.value-item:hover {
    transform: translateX(8px);
    border-color: var(--gold-primary);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 36px;
}

.value-content h4 {
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.value-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 217, 255, 0.3);
}

.image-icon {
    font-size: 120px;
    margin-bottom: 25px;
}

.image-placeholder p {
    font-size: 26px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 8px 0;
}

.image-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(255, 215, 0, 0.08));
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.8;
}

.btn-cta {
    background: var(--gold-gradient);
    border: none;
    color: #000000;
    padding: 20px 55px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow-gold);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.cta-note {
    margin-top: 25px;
    color: var(--text-muted);
}

.cta-note a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 70px 0 25px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #00d9ff, #ffd700, #00d9ff) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--gold-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-muted);
}

/* ============================================================================
   AUTH MODALS
   ============================================================================ */

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 45px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-strong);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: white;
    transform: rotate(90deg);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 14px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 20px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-auth {
    background: var(--gold-gradient);
    border: none;
    color: #000000;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: var(--shadow-glow-gold);
}

.btn-auth:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-auth:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ============================================================================
   NOTIFICATION
   ============================================================================ */

.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--bg-card);
    backdrop-filter: blur(30px) saturate(180%);
    border-left: 4px solid var(--gold-primary);
    border-radius: 15px;
    padding: 18px 25px;
    min-width: 320px;
    max-width: 420px;
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-strong);
}

.notification.show {
    right: 30px;
}

.notification.success {
    border-left-color: #00ff88;
}

.notification.error {
    border-left-color: #ff3366;
}

.notification.warning {
    border-left-color: #ffaa00;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
    
    .hero-title-main {
        font-size: 42px;
    }
    
    .hero-title-sub {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .auth-modal-content {
        padding: 35px 25px;
        margin: 20px;
    }
    
    .notification {
        max-width: calc(100vw - 40px);
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .stat-box {
        min-width: 140px;
        padding: 20px;
    }
}