/* ===== UPDATES PAGE STYLING ===== */

.updates-page {
    color: #fff;
    text-align: center;
    padding: 100px 20px 60px;
    min-height: 100vh;
}

.updates-hero {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease;
}

.updates-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #356AE5;
}

.updates-hero p {
    color: #ccc;
    font-size: 1.1rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.update-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
    text-align: left;
    animation: fadeInUp 0.8s ease;
}

.update-card h2 {
    color: #356AE5;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.update-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-card li {
    color: #eee;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
}

.update-card li::before {
    content: "•";
    color: #356AE5;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.update-link {
    margin-top: 15px;
    text-align: right;
}

.update-link a {
    color: #356AE5;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.update-link a:hover {
    color: #356AE5;
}


@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
