/* ===================================
   CARTE MONDIALE RÉGLEMENTAIRE
   =================================== */

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.reg-card {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.reg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.reg-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reg-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    font-size: 1.5rem;
}

.country {
    font-size: 1.1rem;
    font-weight: 700;
}

.score {
    font-size: 0.85rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.reg-body {
    padding: 20px;
    font-size: 15px;
    color: #cbd5e1;
}

.reg-body p {
    margin-bottom: 8px;
}

.reg-body strong {
    color: #fff;
}

.detail {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
    line-height: 1.4;
}

/* Status badges */
.status-production,
.status-advanced,
.status-pilot,
.status-fragmented {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

.status-production {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-advanced {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.status-pilot {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.status-fragmented {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Couleurs par pays */
.green .reg-header {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-top: 3px solid #10b981;
}

.blue .reg-header {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-top: 3px solid #3b82f6;
}

.purple .reg-header {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-top: 3px solid #a855f7;
}

.orange .reg-header {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-top: 3px solid #f59e0b;
}

/* Conclusion */
.reg-conclusion {
    margin-top: 40px;
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.reg-conclusion i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 10px;
}

.reg-conclusion p {
    margin: 10px 0 0 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reg-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .score {
        align-self: flex-start;
    }
}