.policy-container {
    width: 90%;
    max-width: 800px;
    margin: 0px auto 80px;
    padding: 50px;
    background-color: rgb(20 20 20 / 0.8);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.3);
}
.policy-container h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #bb86fc;
    margin-bottom: 15px;
}
.policy-meta {
    display: block;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    color: #888;
    font-size: 1rem;
    font-style: italic;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.policy-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #fff;
    text-align: left;
    border-left: 5px solid #bb86fc;
    padding-left: 15px;
}
.policy-container p,
.policy-container li {
    font-size: 1.05rem;
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
}
.policy-container ul {
    padding-left: 25px;
    margin-bottom: 30px;
}
.policy-container li {
    margin-bottom: 12px;
}
.policy-container a {
    color: #bb86fc;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #bb86fc;
}
.policy-container a:hover {
    color: #fff;
    border-bottom-style: solid;
}
footer {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    background-color: #0a0a0a;
    border-top: 1px solid rgb(255 255 255 / 0.05);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
.footer-info {
    opacity: 0.7;
}
#changelog-content h1 {
    font-size: 1.8rem; 
    text-align: left;
    margin-top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    color: #fff;
}
#changelog-content h1:first-child {
    margin-top: 0;
}
#changelog-content h3 {
    font-size: 1.2rem;
    color: #bb86fc;
    margin-top: 20px;
    margin-bottom: 10px;
}
#changelog-content ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #ccc;
}
.footer-info a {
    color: #bb86fc !important;
    font-weight: 600;
    text-decoration: none;
}
.footer-info a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.5;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition:
        opacity 0.2s,
        color 0.2s;
}
.footer-links a:hover {
    opacity: 1;
    color: #bb86fc;
    text-decoration: underline;
}
.separator {
    margin: 0 8px;
    opacity: 0.3;
}
.dot {
    opacity: 0.3;
}
@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
