/* =========================
   Variables
========================= */
:root {
    --color-bg-start: #1a1f2e;
    --color-bg-end: #2c3e50;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-primary: #5865F2;

    --transition-base: 0.3s ease;
}

/* =========================
   Reset
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   Base
========================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-end));
	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* =========================
   Header
========================= */
.site-header {
    padding: 2rem;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    opacity: 0.8;
    margin-left: 2px;
}

/* =========================
   Main Content
========================= */
.content {
    flex: 1;
    display: flex;            
    flex-direction: column;   
    justify-content: center;  /* centre verticalement */
    align-items: center;      /* centre horizontalement */
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 3rem;
    width: 100%;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: lowercase;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

/* =========================
   Separators
========================= */
.separator {
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 2.5rem 0;
}

.footer-separator {
    margin-top: 4rem;
}

/* =========================
   Footer
========================= */
.site-footer {
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-nav a:hover {
    color: var(--color-text);
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }

    .site-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .page-title {
        font-size: 1.3rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}