/* ==========================================
   Dynasty 8 - Styles de base
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #156d38;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.hero-section {
    display: none;
}

/* Liens footer avec styles */
.footer-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-kodify {
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-link-kodify:hover {
    border-bottom: 2px solid white;
}

.footer-link-version {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.footer-link-version:hover {
    background-color: rgba(24, 113, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
}

.footer-link-admin {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.footer-link-admin:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}
