body {
    font-family: "Noto Sans", sans-serif;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
    background: linear-gradient(120deg, #eaf4ff 0%, #cbe2ff 100%);
    margin: 0;
    padding: 0;
}

body.page-loaded {
    opacity: 1;
}

header {
    background: rgba(219,236,255,0.97);
    border-bottom: 2px solid #261800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 70px;
    box-shadow: 0 2px 12px rgba(63,139,232,0.07);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    box-sizing: border-box;
}

.logo-header {
    width: 150px;
    transition: transform 0.2s;
}
.logo-header:hover {
    transform: rotate(-1deg) scale(1.2);
}

nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

a {
    font-size: large;
    font-family: "Noto Sans", sans-serif;
    color: royalblue;
    text-decoration: none;
    border: royalblue 2px solid;
    background-color: #ffffff;
    border-radius: 7px;
    padding: 5px 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

a:hover, a:focus, a:active {
    color: white;
    border: white 2px solid;
    background-color: royalblue;
    border-radius: 7px;
    box-shadow: #6b8495 1px 1px 10px;
}

main {
    margin-top: 90px;
    min-height: 70vh;
}

.privacy-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(63, 139, 232, 0.10);
    max-width: 800px;
    margin: 40px auto 30px auto;
    padding: 38px 36px 32px 36px;
    border: 2px solid #3f8be8;
    animation: fadeIn 1.2s;
}

.privacy-container h1 {
    font-family: "Exo 2", sans-serif;
    color: #3f8be8;
    font-size: 2.1rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-container ol {
    padding-left: 22px;
    color: #222;
    font-size: 1.08em;
}

.privacy-container li {
    margin-bottom: 22px;
    line-height: 1.7;
    font-family: "Noto Sans", sans-serif;
}

.privacy-container strong {
    color: #3f8be8;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

footer {
    background: linear-gradient(120deg, #eaf4ff 60%, #cbe2ff 100%);
    border-top: 2px solid #261800;
    box-shadow: 0 -2px 24px rgba(63,139,232,0.10);
    padding: 38px 0 18px 0;
    margin-top: 60px;
    font-size: 1.08em;
    color: #222;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 5vw;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 220px;
}

.footer-logo {
    width: 70px;
    border-radius: 18px;
    box-shadow: 0 2px 12px #3f8be855;
    background: #fff;
    padding: 6px;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #5865F2 60%, #3f8be8 100%);
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    text-decoration: none;
    box-shadow: 0 2px 12px #3f8be855;
    transition: background 0.2s, transform 0.2s;
}
.discord-btn:hover {
    background: linear-gradient(90deg, #3f8be8 60%, #5865F2 100%);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}

.footer-infos {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: flex-start;
    min-width: 220px;
}

.footer-infos a {
    color: #3f8be8;
    text-decoration: underline;
    font-weight: 500;
}

.footer-legals {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-legals h4 {
    margin: 0 0 4px 0;
    font-size: 1.08em;
    color: #3f8be8;
    font-family: "Exo 2", sans-serif;
}
.footer-legals a {
    color: #3f8be8;
    text-decoration: underline;
    font-size: 1em;
    font-family: "Noto Sans", sans-serif;
    transition: color 0.2s;
}
.footer-legals a:hover {
    color: royalblue;
}

@media (max-width: 900px) {
    header {
        position: static;
        width: 100%;
        padding: 0 3vw;
    }
    main {
        margin-top: 0;
    }
    .privacy-container {
        margin: 24px 2vw 18px 2vw;
        padding: 18px 8vw 18px 8vw;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 2vw;
    }
    .footer-infos {
        align-items: center;
        text-align: center;
    }
    .footer-legals {
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .privacy-container {
        padding: 12px 2vw 12px 2vw;
    }
    .privacy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .privacy-container ol {
        padding-left: 18px;
    }
    .footer {
        font-size: small;
    }
    .footer-content {
        gap: 12px;
        padding: 0 2vw;
    }
    .footer-logo-social {
        min-width: 180px;
    }
    .footer-infos, .footer-legals {
        align-items: center;
        text-align: center;
    }
}