/* --- JOURNAL DE TRADING POUR L'UEMOA - STYLE LUXE --- */

:root {
    --bg-main: #050c1f;
    --bg-card: #0a162f;
    --accent-gold: #d4af37;
    --text-main: #f5f5f5;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    min-height: 100vh;
}

/* Glassmorphism Effect pour les cartes */
.card-luxe {
    background: rgba(10, 22, 47, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
}

/* Bouton Or Mat */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
    color: #050c1f;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Inputs Institutionnels */
input, textarea {
    background-color: var(--bg-main) !important;
    border: 1px solid var(--border-color) !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 0.75rem !important;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: var(--accent-gold) !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Style des titres et typographie */
h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

/* Scrollbar personnalisée style UEMOA */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Effet de transition pour les pages */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Badge Statut pour le dashboard */
.badge-essai {
    background: #1e293b;
    color: #94a3b8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.badge-payant {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}
