/* ========================================
   Variables CSS et Base
======================================== */
:root {
    /* Couleurs Material Design 4 */
    --md-primary: #6750A4;
    --md-primary-container: #EADDFF;
    --md-on-primary: #FFFFFF;
    --md-on-primary-container: #21005D;
    
    --md-secondary: #625B71;
    --md-secondary-container: #E8DEF8;
    --md-on-secondary: #FFFFFF;
    --md-on-secondary-container: #1D192B;
    
    --md-surface: #FFFBFE;
    --md-surface-variant: #E7E0EC;
    --md-on-surface: #1D1B20;
    --md-on-surface-variant: #49454F;
    
    --md-outline: #79747E;
    --md-outline-variant: #CAC4D0;
    
    --md-error: #BA1A1A;
    --md-error-container: #FFDAD6;
    --md-on-error: #FFFFFF;
    --md-on-error-container: #410002;
    
    --md-success: #00668B;
    --md-success-container: #C1E7FF;
    
    /* Élévations sophistiquées avec profondeur */
    --elevation-1: 
        0 1px 3px rgba(0,0,0,0.12),
        0 1px 2px rgba(0,0,0,0.24);
    --elevation-2: 
        0 3px 6px rgba(0,0,0,0.16),
        0 3px 6px rgba(0,0,0,0.23);
    --elevation-3: 
        0 10px 20px rgba(0,0,0,0.19),
        0 6px 6px rgba(0,0,0,0.23);
    --elevation-4: 
        0 14px 28px rgba(0,0,0,0.25),
        0 10px 10px rgba(0,0,0,0.22);
    --elevation-5: 
        0 19px 38px rgba(0,0,0,0.30),
        0 15px 12px rgba(0,0,0,0.22);
    
    /* Textures et effets */
    --texture-grain: 
        radial-gradient(circle at 25% 25%, transparent 20%, rgba(255,255,255,0.3) 21%, rgba(255,255,255,0.3) 34%, transparent 35%, transparent),
        linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1));
    --texture-subtle-lines: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255,255,255,0.03) 100px
        );
    --glow-primary: 0 0 30px rgba(103, 80, 164, 0.3);
    --glow-secondary: 0 0 30px rgba(98, 91, 113, 0.3);
    
    /* Rayons de bordure */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 200ms ease-in-out;
    --transition-medium: 300ms ease-in-out;
    --transition-slow: 400ms ease-in-out;
    
    /* Tailles */
    --header-height: 64px;
    --container-max-width: 1200px;
}

/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: 
        var(--texture-subtle-lines),
        linear-gradient(135deg, 
            var(--md-surface) 0%, 
            #f8f9fa 50%, 
            var(--md-surface-variant) 100%
        );
    background-attachment: fixed;
    color: var(--md-on-background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--texture-grain);
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

main, .hero, .malles-section {
    flex: 1 0 auto;
}

footer.footer {
    flex-shrink: 0;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Composants de base
======================================== */

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 0.08;
}

.btn:active::before {
    opacity: 0.12;
}

.btn--primary {
    background: 
        linear-gradient(135deg, 
            var(--md-primary) 0%, 
            #8B5FBF 50%, 
            var(--md-primary) 100%
        );
    color: var(--md-on-primary);
    box-shadow: 
        var(--elevation-2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.5s ease;
}

.btn--primary:hover {
    box-shadow: 
        var(--elevation-4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(103, 80, 164, 0.4);
    transform: translateY(-2px);
    background: 
        linear-gradient(135deg, 
            #7B4FAE 0%, 
            #8B5FBF 50%, 
            #7B4FAE 100%
        );
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:active {
    transform: translateY(0px);
    box-shadow: 
        var(--elevation-1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.1s ease-out;
}

.btn--secondary {
    background: 
        linear-gradient(135deg, 
            var(--md-secondary) 0%, 
            #756B81 50%, 
            var(--md-secondary) 100%
        );
    color: var(--md-on-secondary);
    box-shadow: 
        var(--elevation-2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
    box-shadow: 
        var(--elevation-3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 25px rgba(98, 91, 113, 0.3);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--small {
    padding: 6px 14px;
    font-size: 13px;
}

.btn--outline {
    background: transparent;
    color: var(--md-primary);
    border: 2px solid rgba(103, 80, 164, 0.5);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: rgba(103, 80, 164, 0.08);
    border-color: var(--md-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 80, 164, 0.15);
}

.btn--outline::before {
    display: none;
}

/* Formulaires */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--md-on-surface);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(103, 80, 164, 0.2);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.8) 100%
        );
    backdrop-filter: blur(8px);
    color: var(--md-on-surface);
    transition: all var(--transition-medium);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--md-primary);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(103, 80, 164, 0.15),
        0 0 0 3px rgba(103, 80, 164, 0.1);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 100%
        );
    transform: translateY(-1px);
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(103, 80, 164, 0.4);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(103, 80, 164, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 14px;
    color: var(--md-on-surface-variant);
    margin: 4px 0 12px;
}

.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    padding-top: 5px;
    left: 0;
    right: 0;
    height: calc(var(--header-height) + 8px);
    background: 
        radial-gradient(circle at 20% 50%, rgba(103, 80, 164, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(98, 91, 113, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 50%,
            rgba(248, 248, 252, 0.95) 100%
        );
    border-bottom: 1px solid rgba(103, 80, 164, 0.15);
    box-shadow: 
        var(--elevation-3),
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(103, 80, 164, 0.1);
    z-index: 1000;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255,255,255,0.04) 102px,
            rgba(255,255,255,0.04) 104px
        ),
        var(--texture-grain);
    opacity: 0.3;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(103, 80, 164, 0.3) 20%,
        rgba(103, 80, 164, 0.6) 50%,
        rgba(103, 80, 164, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 1px 3px rgba(103, 80, 164, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--md-on-surface);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(103, 80, 164, 0.1), 
        transparent
    );
    transition: left 0.8s ease;
}

.logo:hover {
    background: 
        linear-gradient(135deg, 
            rgba(103, 80, 164, 0.08) 0%, 
            rgba(255, 255, 255, 0.3) 100%
        );
    box-shadow: 
        0 4px 12px rgba(103, 80, 164, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.logo:hover::before {
    left: 100%;
}

.logo .material-icons {
    font-size: 36px;
    background: linear-gradient(135deg, 
        var(--md-primary) 0%,
        #8B5FBF 50%,
        var(--md-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(103, 80, 164, 0.3));
    transition: all var(--transition-medium);
}

.logo:hover .material-icons {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(103, 80, 164, 0.4));
}

.logo h1 {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(135deg, 
        var(--md-on-surface) 0%,
        var(--md-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-medium);
}

.logo:hover h1 {
    transform: translateX(2px);
}

.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--md-on-surface);
    border-radius: var(--radius-xl);
    transition: all var(--transition-medium);
    position: relative;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.3) 0%, 
            rgba(255, 255, 255, 0.1) 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(103, 80, 164, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
}

.nav-link:hover {
    background: 
        linear-gradient(135deg, 
            rgba(103, 80, 164, 0.15) 0%, 
            rgba(255, 255, 255, 0.4) 100%
        );
    color: var(--md-primary);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(103, 80, 164, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(103, 80, 164, 0.3);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:active {
    transform: translateY(0px);
    box-shadow: 
        0 2px 8px rgba(103, 80, 164, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.1s ease-out;
}

.nav-link--admin {
    background: 
        linear-gradient(135deg, 
            var(--md-secondary-container) 0%, 
            rgba(232, 222, 248, 0.8) 100%
        );
    color: var(--md-on-secondary-container);
    border-color: rgba(98, 91, 113, 0.3);
    box-shadow: 
        0 3px 12px rgba(98, 91, 113, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-link--admin:hover {
    background: 
        linear-gradient(135deg, 
            rgba(98, 91, 113, 0.8) 0%, 
            rgba(232, 222, 248, 0.9) 100%
        );
    color: white;
    box-shadow: 
        0 6px 20px rgba(98, 91, 113, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: calc(var(--header-height) + 88px) 0 80px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(103, 80, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(98, 91, 113, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, 
            var(--md-primary-container) 0%, 
            rgba(232, 222, 248, 0.8) 30%,
            rgba(255, 255, 255, 0.9) 60%,
            var(--md-secondary-container) 100%
        );
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0.3px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.1) 42px,
            rgba(255,255,255,0.1) 44px
        ),
        var(--texture-grain);
    opacity: 0.3;
    pointer-events: none;
    filter: blur(0.5px);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(103, 80, 164, 0.1) 60deg, 
            transparent 120deg,
            rgba(98, 91, 113, 0.1) 180deg,
            transparent 240deg,
            rgba(103, 80, 164, 0.1) 300deg,
            transparent 360deg
        );
    
    pointer-events: none;
    opacity: 0.4;
    filter: blur(1px);
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(103, 80, 164, 0.12);
    border: 1px solid rgba(103, 80, 164, 0.25);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    color: var(--md-primary);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-badge .material-icons {
    font-size: 16px;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Stats bar */
.hero-stats {
    margin-top: 60px;
    padding: 28px 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(103, 80, 164, 0.12);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid rgba(103, 80, 164, 0.12);
    transition: background var(--transition-fast);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 32px !important;
    background: linear-gradient(135deg, var(--md-primary), #8B5FBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--md-on-surface);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--md-on-surface-variant);
    font-weight: 400;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--md-on-primary-container);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--md-on-primary-container);
    margin-bottom: 32px;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 260px;
}

.hero-icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(103, 80, 164, 0.2);
    animation: ringPulse 3s ease-in-out infinite;
    pointer-events: none;
    width: 220px;
    height: 220px;
}

.hero-icon-ring--2 {
    width: 270px;
    height: 270px;
    border-color: rgba(103, 80, 164, 0.1);
    animation-delay: 1.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.2; }
}

.hero-icon {
    font-size: 200px !important;
    color: var(--md-primary);
    opacity: 0;
    filter: 
        drop-shadow(0 10px 20px rgba(103, 80, 164, 0.3))
        drop-shadow(0 20px 40px rgba(103, 80, 164, 0.2));
    animation: heroIconEntrance 1.2s ease-out 0.5s forwards;
    text-shadow: 
        0 0 20px rgba(103, 80, 164, 0.4),
        0 0 40px rgba(103, 80, 164, 0.3),
        0 0 60px rgba(103, 80, 164, 0.2);
    background: linear-gradient(135deg, 
        var(--md-primary) 0%,
        #8B5FBF 50%,
        var(--md-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroIconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px) rotate(-10deg);
        filter: 
            drop-shadow(0 0 0 rgba(103, 80, 164, 0))
            drop-shadow(0 0 0 rgba(103, 80, 164, 0))
            blur(10px);
    }
    30% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-10px) rotate(5deg);
        filter: 
            drop-shadow(0 15px 30px rgba(103, 80, 164, 0.4))
            drop-shadow(0 25px 50px rgba(103, 80, 164, 0.3))
            blur(2px);
    }
    70% {
        opacity: 0.8;
        transform: scale(0.95) translateY(5px) rotate(-2deg);
        filter: 
            drop-shadow(0 12px 25px rgba(103, 80, 164, 0.35))
            drop-shadow(0 22px 45px rgba(103, 80, 164, 0.25))
            blur(0px);
    }
    100% {
        opacity: 0.8;
        transform: scale(1) translateY(0px) rotate(0deg);
        filter: 
            drop-shadow(0 10px 20px rgba(103, 80, 164, 0.3))
            drop-shadow(0 20px 40px rgba(103, 80, 164, 0.2))
            blur(0px);
    }
}

/* ========================================
   Sections
======================================== */
.section-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    color: var(--md-on-surface);
    background: linear-gradient(135deg, var(--md-on-surface) 0%, var(--md-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--md-on-surface-variant);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.85;
}

.malles-section {
    padding: 80px 0;
}

.malles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.malle-card {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.7) 100%
        );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        var(--elevation-1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.malle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--malle-color, var(--md-primary)) 0%,
        rgba(103, 80, 164, 0.8) 50%,
        var(--malle-color, var(--md-primary)) 100%
    );
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: left;
    box-shadow: 0 2px 8px rgba(103, 80, 164, 0.3);
}

.malle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--texture-grain);
    opacity: 0.02;
    pointer-events: none;
}

.malle-card:hover {
    box-shadow: 
        var(--elevation-4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 40px rgba(103, 80, 164, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(103, 80, 164, 0.3);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.85) 100%
        );
}

.malle-card:hover::before {
    transform: scaleX(1);
    box-shadow: 
        0 2px 8px rgba(103, 80, 164, 0.5),
        0 0 20px rgba(103, 80, 164, 0.3);
}

.malle-card:active {
    transform: translateY(-6px) scale(1.01);
    transition: all 0.1s ease-out;
}

.malle-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.malle-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--md-on-surface);
}

.malle-description {
    color: var(--md-on-surface-variant);
    margin-bottom: 24px;
    line-height: 1.5;
}

.malle-objets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.objet-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--md-surface-variant);
    border-radius: var(--radius-xl);
    font-size: 14px;
    color: var(--md-on-surface-variant);
}

.malle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.malle-status {
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 500;
}

.malle-status--disponible {
    background: var(--md-success-container);
    color: var(--md-success);
}

.malle-status--indisponible {
    background: var(--md-error-container);
    color: var(--md-error);
}

/* ========================================
   Section Demande
======================================== */
.demande-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(103, 80, 164, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, 
            var(--md-surface-variant) 0%, 
            rgba(231, 224, 236, 0.8) 50%,
            rgba(255, 255, 255, 0.9) 100%
        );
    position: relative;
}

.demande-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--texture-subtle-lines);
    opacity: 0.4;
    pointer-events: none;
}

.demande-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.demande-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--md-on-surface);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--md-primary);
    color: var(--md-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--md-on-surface);
}

.step-content p {
    color: var(--md-on-surface-variant);
    font-size: 14px;
}

.demande-form {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.8) 100%
        );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 
        var(--elevation-3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.demande-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--texture-grain);
    opacity: 0.02;
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.objets-interet {
    margin-top: 24px;
    padding: 24px;
    background: var(--md-primary-container);
    border-radius: var(--radius-md);
    animation: slideDown var(--transition-medium) ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.objets-interet h4 {
    color: var(--md-on-primary-container);
    margin-bottom: 8px;
}

.objets-interet p {
    color: var(--md-on-primary-container);
    margin-bottom: 16px;
    opacity: 0.8;
}

.objets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.objet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.7) 100%
        );
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.objet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(103, 80, 164, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.objet-item:hover {
    border-color: rgba(103, 80, 164, 0.6);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        var(--elevation-3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 20px rgba(103, 80, 164, 0.2);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.85) 100%
        );
}

.objet-item:hover::before {
    left: 100%;
}

.objet-item.selected {
    border-color: var(--md-primary);
    background: 
        linear-gradient(135deg, 
            var(--md-primary-container) 0%, 
            rgba(232, 222, 248, 0.9) 100%
        );
    color: var(--md-on-primary-container);
    box-shadow: 
        var(--elevation-2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 15px rgba(103, 80, 164, 0.3);
    transform: scale(1.02);
}

.objet-item:active {
    transform: scale(0.98);
    transition: all 0.1s ease-out;
}

.objet-emoji {
    font-size: 24px;
}

.objet-name {
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Modales
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn var(--transition-medium) ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--md-surface);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--elevation-3);
    animation: slideUp var(--transition-medium) ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--md-outline-variant);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--md-on-surface);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--md-on-surface-variant);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--md-surface-variant);
}

.modal-body {
    padding: 24px;
}

.modal-objets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.modal-objet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--md-surface-variant);
    border-radius: var(--radius-sm);
}

.modal-objet-emoji {
    font-size: 32px;
}

.modal-objet-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--md-on-surface);
}

.modal-objet-info p {
    font-size: 14px;
    color: var(--md-on-surface-variant);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid var(--md-outline-variant);
}

.success-icon {
    text-align: center;
    margin-bottom: 16px;
}

.success-icon .material-icons {
    font-size: 64px;
    color: var(--md-success);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: 
        linear-gradient(135deg, 
            #1a1a1a 0%, 
            var(--md-on-surface) 50%, 
            #2a2a2a 100%
        );
    color: var(--md-surface);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.02) 62px,
            rgba(255,255,255,0.02) 64px
        );
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--md-primary) 0%,
        #8B5FBF 25%,
        var(--md-secondary) 50%,
        #8B5FBF 75%,
        var(--md-primary) 100%
    );
    box-shadow: 0 2px 10px rgba(103, 80, 164, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-icon {
        font-size: 120px !important;
    }
    
    .demande-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .malles-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none; /* Nous implémenterons un menu mobile plus tard */
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-objets {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Animations et interactions avancées
======================================== */

/* Effets de parallaxe subtils */
.hero-icon {
    will-change: transform;
}

/* Micro-animations pour les interactions */
.btn, .objet-item, .malle-card {
    will-change: transform, box-shadow;
}

/* Animations supprimées - pas de scintillement */

/* Animation d'entrée déjà définie plus haut */

/* Ondulation au survol des cartes */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.malle-card:active::after {
    animation: ripple 0.6s ease-out;
}

/* Éléments cachés par défaut, révélés par les animations */
.hero-title,
.hero-subtitle,
.hero .btn,
.malles-section .section-title,
.malle-card {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in {
    animation: fadeInHero 0.6s ease-out forwards;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus visible pour l'accessibilité */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--md-primary);
    outline-offset: 2px;
}

/* ========================================
   État de chargement
======================================== */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.loading-state p {
    margin-top: 16px;
    color: var(--md-on-surface-variant);
    font-size: 14px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--md-outline-variant);
    border-top: 4px solid var(--md-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Photos d'objets
======================================== */

/* Photos miniatures dans les cartes de malles */
.objet-photo-mini {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: var(--radius-xs);
    border: 1px solid var(--md-outline-variant);
}

/* Photos dans les modales de malles */
.modal-objet-media {
    flex-shrink: 0;
    margin-right: 16px;
}

.modal-objet-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--md-outline-variant);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.modal-objet-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--elevation-2);
}

/* ========================================
   Interface admin - Upload de photos
======================================== */

.photo-upload-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px;
}

.btn-upload-photo {
    background: var(--md-surface-variant);
    border: 1px solid var(--md-outline-variant);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.btn-upload-photo:hover {
    background: var(--md-secondary-container);
    border-color: var(--md-outline);
}

.btn-upload-photo:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.photo-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: var(--md-surface-variant);
    border-radius: var(--radius-sm);
    border: 1px solid var(--md-outline-variant);
}

.photo-thumbnail {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: var(--radius-xs);
}

.photo-name {
    font-size: 12px;
    color: var(--md-on-surface-variant);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Amélioration de la grille d'objets en mode édition */
.objet-item-edit {
    display: grid;
    grid-template-columns: 60px 1fr 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--md-surface);
    border: 1px solid var(--md-outline-variant);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.objet-item-edit input[type="text"] {
    padding: 8px 12px;
    border: 1px solid var(--md-outline-variant);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.objet-item-edit .emoji-picker {
    text-align: center;
    font-size: 20px;
}

/* ========================================
   Lightbox
======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--md-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--elevation-3);
    transform: scale(0.8);
    transition: transform var(--transition-medium);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-title {
    padding: 16px 20px;
    background: var(--md-surface);
    text-align: center;
    font-weight: 500;
    color: var(--md-on-surface);
    border-top: 1px solid var(--md-outline-variant);
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image {
        max-height: 75vh;
    }
    
    .objet-item-edit {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .photo-upload-container {
        justify-content: center;
        margin: 8px 0;
    }
}

/* ========================================
   Sections générales et spécifiques
======================================== */
.sections-generales {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--md-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--elevation-1);
    border-left: 4px solid var(--md-primary);
}

.general-section {
    margin-bottom: 24px;
}

.general-section:last-child {
    margin-bottom: 0;
}

.general-section .section-title {
    color: var(--md-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.general-section .section-title::before {
    content: '📋';
    font-size: 20px;
}

.no-general-sections {
    text-align: center;
    color: var(--md-on-surface-variant);
    font-style: italic;
    padding: 20px;
}

.questionnaire-objet {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--md-surface-variant);
    border-radius: var(--radius-lg);
    box-shadow: var(--elevation-1);
    border-left: 4px solid var(--md-secondary);
}

.questionnaire-objet h3 {
    color: var(--md-secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.no-specific-sections {
    text-align: center;
    color: var(--md-on-surface-variant);
    font-style: italic;
    padding: 20px;
}

/* Styles pour l'affichage des réponses dans l'admin */
.structured-questionnaire {
    background: var(--md-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--elevation-1);
}

.general-sections,
.object-sections {
    margin-bottom: 24px;
}

.general-sections h5,
.object-sections h5 {
    color: var(--md-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.general-sections h5::before {
    content: '📋';
}

.object-sections h5::before {
    content: '🧩';
}

.objets-responses-grid {
    display: grid;
    gap: 20px;
}

.objet-responses {
    background: var(--md-surface-variant);
    border-radius: var(--radius-md);
    padding: 16px;
    border-left: 3px solid var(--md-secondary);
}

.objet-responses h6 {
    color: var(--md-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.response-grid {
    display: grid;
    gap: 12px;
}

.response-item {
    padding: 8px 0;
}

.response-item strong {
    color: var(--md-on-surface);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.response-item p {
    color: var(--md-on-surface-variant);
    margin: 0;
    line-height: 1.4;
}

/* Styles pour l'éditeur de questionnaire avancé */
.section-settings {
    background: var(--md-surface-variant);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    border-left: 3px solid var(--md-outline);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    accent-color: var(--md-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.checkbox-text .material-icons {
    font-size: 18px;
    color: var(--md-primary);
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--md-on-surface-variant);
    line-height: 1.3;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .sections-generales {
        padding: 16px;
        margin-bottom: 24px;
    }

    .questionnaire-objet {
        padding: 16px;
        margin-bottom: 20px;
    }

    .objets-responses-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 0 16px;
        border-right: none;
        border-bottom: 1px solid rgba(103, 80, 164, 0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(103, 80, 164, 0.1);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-icon-wrapper {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(103, 80, 164, 0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: none;
    }
}