.hidden {
    display: none;
}

.slider-container {
	display: flex;
	align-items: center;
    justify-content: center; /* Centre horizontalement */
    gap: 10px; /* Espacement entre la checkbox et le texte */
}

.slider {
	position: relative;
	width: 50px;
	height: 25px;
	background-color: #ccc;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.slider::before {
	content: "";
	position: absolute;
	width: 21px;
	height: 21px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	border-radius: 50%;
	transition: transform 0.3s;
}

.checkbox:checked + .slider {
	background-color: #66bb6a;
}

.checkbox:checked + .slider::before {
	transform: translateX(25px);
}

.checkbox {
	display: none;
}

.text-muted {
	color: #837e7e; /* Couleur atténuée pour le texte "Mémoriser mot de passe" */
}

 .small-text {
	font-size: 1.0em; /* Taille de police réduite */
}

#loginContainer input[type="text"] {
    width: 64%;
    padding: 10px;
    margin: 10px 0;
    color: darkblue;
    border: 2px solid darkblue;
    border-radius: 4px;
	font-family: "Akaya Kanadaka", cursive;
    font-size: 18px;
}

#loginContainer input[type="password"] {
    width: 64%;
    font-size: 18px; /* Augmente la taille de la police */
    padding: 10px;
    margin: 10px 0;
    color: darkblue;
    border: 2px solid darkblue;
    border-radius: 4px;
    font-family: "Akaya Kanadaka", cursive;
}

#loginContainer button {
    padding: 10px 20px;
    background-color: darkblue;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#loginContainer button:hover {
    background-color: #45a049;
}

.password-container { /* Conteneur pour le champ de mot de passe et l'icône */
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 30px; /* Espacement sous le champ de mot de passe */
}

#password { /* Ajustement du champ de mot de passe */
    width: 100%;
    max-width: 300px;
    padding-right: 35px; /* Ajouter de l'espace pour l'icône de l'œil */
    box-sizing: border-box;
}

/* Style de l'icône de l'œil pour afficher/masquer le mot de passe */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
	max-width: 300px;
}

.toggle-password img {
    width: 25px;
    height: 25px;
}

#waitModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#waitModal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    text-align: center;
    color: blue;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

#waitModal .spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
    background-color: orange;
}

#rememberMeText {
    margin-left: 5px; /* Décale l'élément de 20px vers la droite */
}

@keyframes spin {
    0%   { transform: rotate(0deg);   }
    100% { transform: rotate(360deg); }
}

#loginModal {
    display: block; /* Toujours afficher la fenêtre modale au démarrage */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#loginContainer {
    position: relative;
    top: 30%;
    width: 320px;
    margin: 0 auto;
    background-color: lightblue;
    color: darkblue;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}


* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-align: center; /* centrage du texte */
}

:root {
    --hue: 223;
    --off-hue: 3;
    --on-hue1: 123;
    --on-hue2: 168;
    --fg: hsl(var(--hue),10%,90%);
    --primary: hsl(var(--hue),90%,50%);
    --trans-dur: 0.6s;
    --trans-timing: cubic-bezier(0.65,0,0.35,1);
    font-size: calc(15px + (25 - 15) * (30vw - 100px) / (1000 - 100));
}

body,
input {
    font: 1em/1.5 sans-serif;
}

body {
    background-image: linear-gradient(45deg,hsl(var(--hue),10%,20%), hsl(var(--hue),10%,10%));
    color: var(--fg);
    height: 100vh;
    transition: background-color var(--trans-dur), color var(--trans-dur);
}

.switch,
.switch_input {
    -webkit-tap-highlight-color: #0000;
}

.switch {
    display: block;
    margin: auto;
    position: relative;
    width: 5em;
    height: 3em;
}

.switch_base-outer,
.switch_base-inner {
    display: block;
    position: absolute;
}

.switch_base-outer {
    border-radius: 1.25em;
    box-shadow: -0.125em -0.125em 0.25em hsl(var(--hue),10%,30%), 0.125em 0.125em 0.125em hsl(var(--hue),10%,30%) inset, 0.125em 0.125em 0.25em hsl(0,0%,0%), -0.125em -0.125em 0.125em hsl(var(--hue),10%,5%) inset;
    top: 0.125em;
    left: 0.125em;
    width: 4.75em;
    height: 2.75em;
}

.switch_base-inner {
    border-radius: 1.125em;
    box-shadow: -0.25em -0.25em 0.25em hsl(var(--hue),10%,30%) inset, 0.0625em 0.0625em 0.125em hsla(var(--hue),10%,30%), 0.125em 0.25em 0.25em hsl(var(--hue),10%,5%) inset, -0.0625em -0.0625em 0.125em hsla(var(--hue),10%,5%);
    top: 0.375em;
    left: 0.375em;
    width: 4.25em;
    height: 2.25em;
}

.switch_base-neon {
    display: block;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.switch_base-neon path {
    stroke-dasharray: 0 104.26 0;
    transition: stroke-dasharray var(--trans-dur) var(--trans-timing);
}

.switch_input {
    outline: transparent;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.switch_input:before {
    border-radius: 0.125em;
    box-shadow: 0 0 0 0.125em hsla(var(--hue),90%,50%,0);
    content: "";
    display: block;
    position: absolute;
    inset: -0.125em;
    transition: box-shadow 0.15s linear;
}

.switch_input:focus-visible:before {
    box-shadow: 0 0 0 0.125em var(--primary);
    outline: none;
}

.switch_knob,
.switch_knob-container {
    border-radius: 1em;
    display: block;
    position: absolute;
}

.switch_knob {
    background-color: hsl(var(--hue),10%,15%);
    background-image: radial-gradient(88% 88% at 50% 50%,hsl(var(--hue),10%,20%) 47%,hsla(var(--hue),10%,20%,0) 50%), radial-gradient(88% 88% at 47% 47%,hsl(var(--hue),10%,85%) 45%,hsla(var(--hue),10%,85%,0) 50%), radial-gradient(65% 70% at 40% 60%,hsl(var(--hue),10%,20%) 46%,hsla(var(--hue),10%,20%,0) 50%);
    box-shadow: -0.0625em -0.0625em 0.0625em hsl(var(--hue),10%,15%) inset, -0.125em -0.125em 0.0625em hsl(var(--hue),10%,5%) inset, 0.75em 0.25em 0.125em hsla(0,0%,0%,0.8);
    width: 2em;
    height: 2em;
    transition: transform var(--trans-dur) var(--trans-timing);
}

.switch_knob-container {
    overflow: hidden;
    top: 0.5em;
    left: 0.5em;
    width: 4em;
    height: 2em;
}

.switch_knob-neon {
    display: block;
    width: 2em;
    height: auto;
}

.switch_knob-neon circle {
    opacity: 0;
    stroke-dasharray: 0 90.32 0 54.19;
    transition: opacity var(--trans-dur) steps(1,end), stroke-dasharray var(--trans-dur) var(--trans-timing);
}

.switch_knob-shadow {
    border-radius: 50%;
    box-shadow: 0.125em 0.125em 0.125em hsla(0,0%,0%,0.9);
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 2em;
    height: 2em;
    transition: transform var(--trans-dur) var(--trans-timing);
}

.switch_led {
    background-color: hsl(var(--off-hue),90%,70%);
    border-radius: 50%;
    box-shadow: 0 -0.0625em 0.0625em hsl(var(--off-hue),90%,40%) inset, 0 0 0.125em hsla(var(--off-hue),90%,70%,0.3), 0 0 0.125em hsla(var(--off-hue),90%,70%,0.3), 0.125em 0.125em 0.125em hsla(0,0%,0%,0.5);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25em;
    height: 0.25em;
    transition: background-color var(--trans-dur) var(--trans-timing), box-shadow var(--trans-dur) var(--trans-timing);
}

.switch_text {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
}

.switch_input:checked ~ .switch_led {
    background-color: hsl(var(--on-hue1),90%,70%);
    box-shadow: 0 -0.0625em 0.0625em hsl(var(--on-hue1),90%,40%) inset, 0 -0.125em 0.125em hsla(var(--on-hue1),90%,70%,0.3), 0 0.125em 0.125em hsla(var(--on-hue1),90%,70%,0.3), 0.125em 0.125em 0.125em hsla(0,0%,0%,0.5);
}

.switch_input:checked ~ .switch_base-neon path {
    stroke-dasharray: 52.13 0 52.13;
}

.switch_input:checked ~ .switch_knob-shadow,
.switch_input:checked ~ .switch_knob-container .switch_knob {
    transform: translateX(100%);
}

.switch_input:checked ~ .switch_knob-container .switch_knob-neon circle {
    opacity: 1;
    stroke-dasharray: 45.16 0 45.16 54.19;
    transition-timing-function: steps(1,start), var(--trans-timing);
}

div.imgmod img {
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 5px;
}

*:focus {
    outline: none;
}

*[tabindex]:focus {
    outline: none;
}

.input-checkbox {
    display: none;
    outline: none;
}

#advanced-checkbox {
    position: relative;
    display: inline-block;
    width: 275px;
    height: 55px;
    margin-bottom: 25px;
    outline: none;
}

.input-checkbox:checked + .slider {
    border: 2px solid #258805;
    background-color: #55aa7f;
    outline: none;
}

.input-checkbox:checked + .slider::before {
    left: 50%;
    outline: none;
}

.input-checkbox:checked + .slider::after {
    content: "";
    left: 0;
    outline: none;
}

.bouton-enfonce {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.button-container {
    display: flex;           /* Disposition en ligne */
    justify-content: center; /* Centrer horizontalement */
    align-items: center;     /* Centrer verticalement */
    gap: 20px;               /* Espacement entre les boutons */
}

.bouton-enfonce[disabled] {
    filter: grayscale(100%); /* Applique un effet de gris */
    opacity: 0.5; /* Réduit l'opacité pour donner l'apparence d'un bouton grisé */
    cursor: not-allowed; /* Curseur non autorisé lorsqu'il est désactivé */
}

.bouton-image:not([disabled]):hover {
    background-color: #e0e0e0; /* Couleur de fond au survol */
}

.bouton-enfonce img {
    display: block;
    width: 100%;
    height: auto;
}

.bouton-enfonce:active {
    transform: translateY(6px);
}

.bouton-enfonce.grise {
    filter: grayscale(100%); /* Applique un effet de gris */
    opacity: 0.5; /* Réduit l'opacité pour donner l'apparence d'un bouton grisé */
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: "Akaya Kanadaka", cursive;
}

h1 {
    font-size: 40px;
}

#rememberMeText {
    text-align: center;
}

.whatsapp-container {
    /*background-color: #DCF8C6;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
    font-family: 'Roboto', sans-serif;
}

.whatsapp-button img {
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

/* New responsive video styles */
#video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100%) */
    height: 0;
    overflow: hidden;
    margin: auto; /* Center the video container */
    max-width: 640px; /* Optional: Set a max-width for larger screens */
}

#video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid green;
    border-radius: 10px;
}

/* Media query for landscape orientation on small screens (smartphones) */
@media screen and (orientation: landscape) and (max-width: 900px) {
    #video-container {
        width: 100vw;   /* Full viewport width */
        height: 100vh;  /* Full viewport height */
        padding-bottom: 0; /* Remove padding-bottom when using explicit height */
        position: fixed; /* Fix position to cover the entire screen */
        top: 50%; /* Centre verticalement */
        left: 50%; /* Centre horizontalement */
        transform: translate(-50%, -50%); /* Ajuste pour le centrage parfait */
        z-index: 9999; /* Ensure it's on top of other content */
    }

    #video-container iframe {
        width: 100%;
        height: 100%;
    }

    /* Hide the title div in landscape mode */
    .w3-container.w3-margin.w3-blue.w3-round-large.w3-text-orange.w3-padding-2 {
        display: none;
    }
}


.health-good .health-text { color: #4CAF50; }
.health-warning .health-text { color: #FF9800; }
.health-error .health-text { color: #F44336; }
.health-offline .health-text { color: #9E9E9E; }

.health-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.metric {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.metric-good { 
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

.metric-warning { 
    color: #FF9800;
    background: rgba(255, 152, 0, 0.2);
}

.metric-error { 
    color: #F44336;
    background: rgba(244, 67, 54, 0.2);
}

.health-warnings {
    margin-top: 4px;
    color: #FF9800;
    font-size: 10px;
}

@media (max-width: 600px) {
    .raspberry-health-container {
        font-size: 10px;
    }
    
    .health-metrics {
        flex-direction: column;
        gap: 2px;
    }
}

.raspberry-health-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.3;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.health-status {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.health-icon {
    margin-right: 6px;
    font-size: 12px;
}

/* ========================================
   CSS MODAL D'ERREUR PROFESSIONNELLE - À AJOUTER DANS PORTAIL.CSS
   ======================================== */

/* Overlay de la modal */
/* REMPLACEZ la section "CSS MODAL D'ERREUR PROFESSIONNELLE" dans votre portail.css par ceci : */

/* ========================================
   CSS MODAL D'ERREUR PROFESSIONNELLE - CORRIGÉ
   ======================================== */

/* Overlay de la modal */
/* ========================================
   CSS MODAL D'ERREUR - VERSION MOBILE CORRIGÉE
   Remplacez TOUTE la section modal d'erreur par ceci
   ======================================== */

/* Overlay de la modal */
#errorModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
    /* Forcer le centrage sur tous les appareils */
    align-items: center;
    justify-content: center;
}

/* Conteneur principal - OPTIMISÉ MOBILE */
.error-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    
    /* MOBILE FIRST - dimensions adaptatives */
    width: calc(100vw - 40px);
    max-width: 380px;
    min-width: 280px;
    min-height: 200px;
    max-height: 80vh;
    
    padding: 0;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* S'assurer que la modal reste dans l'écran */
    margin: 20px auto;
    box-sizing: border-box;
}

/* Header avec icône d'erreur */
.error-modal-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 16px 16px 0 0;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Icône d'erreur */
.error-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.error-icon i {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Titre de l'erreur - MOBILE OPTIMISÉ */
.error-modal-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Akaya Kanadaka', cursive;
    line-height: 1.2;
}

/* Corps de la modal */
.error-modal-body {
    padding: 20px 18px;
    text-align: center;
}

/* Message d'erreur - MOBILE OPTIMISÉ */
.error-modal-message {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-weight: 500;
    word-wrap: break-word;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer avec boutons */
.error-modal-footer {
    padding: 0 18px 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Bouton principal - MOBILE OPTIMISÉ */
.error-btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    min-width: 90px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.error-btn-primary:hover,
.error-btn-primary:active {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

/* Bouton de fermeture (X) */
.error-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.error-modal-close:hover,
.error-modal-close:active {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Badge de type d'erreur - MOBILE ADAPTÉ */
.error-type-badge {
    position: absolute;
    top: -6px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* MEDIA QUERIES SPÉCIFIQUES MOBILE */

/* Très petits écrans */
@media (max-width: 350px) {
    .error-modal-content {
        width: calc(100vw - 20px);
        margin: 10px auto;
        border-radius: 12px;
    }
    
    .error-modal-header {
        padding: 16px;
        border-radius: 12px 12px 0 0;
    }
    
    .error-modal-title {
        font-size: 16px;
    }
    
    .error-modal-message {
        font-size: 13px;
    }
    
    .error-modal-body {
        padding: 16px 14px;
    }
    
    .error-modal-footer {
        padding: 0 14px 16px;
    }
}

/* Écrans moyens - téléphones en portrait */
@media (min-width: 351px) and (max-width: 480px) {
    .error-modal-content {
        width: calc(100vw - 30px);
        max-width: 340px;
    }
}

/* Téléphones en paysage */
@media (max-height: 500px) and (orientation: landscape) {
    .error-modal-content {
        max-height: 90vh;
        margin: 5px auto;
    }
    
    .error-modal-header {
        padding: 16px;
    }
    
    .error-modal-body {
        padding: 16px 18px;
    }
    
    .error-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }
    
    .error-icon i {
        font-size: 20px;
    }
}

/* Animation d'apparition */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        transform: translate(-50%, -60%) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Animation de sortie */
.error-modal-exit {
    animation: fadeOut 0.3s ease-in;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* États spéciaux selon le type d'erreur */
.error-modal-warning .error-modal-header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.error-modal-warning .error-type-badge {
    background: #f39c12;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

.error-modal-critical .error-modal-header {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.error-modal-critical .error-type-badge {
    background: #8e44ad;
    box-shadow: 0 2px 8px rgba(142, 68, 173, 0.4);
}

/* Pattern de fond subtil */
.error-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}