@import url('styles.css');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #00bcd4);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    color: var(--text-color);
    display: flex; 
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    min-height: 100vh; 
    padding: 50px 20px; 
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container-pp {
    padding: 30px;
    max-width: 800px; 
    width: 90%;
    background: rgba(15, 32, 39, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    text-align: left;
    margin-bottom: 30px;
}

.title-pp {
    font-size: 2.8em;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--main-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.section-title {
    color: var(--main-color);
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(26, 169, 169, 0.5);
    padding-bottom: 5px;
}

p, ul {
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

footer {
    padding: 10px 0;
    text-align: center;
    width: 100%;
    color: #aaa;
}
