* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #ffffff;
    color: #2b2b2b;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Purple glowing background */
.bg {
    position: fixed;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    filter: blur(90px);
}

.container {
    display: flex;
    justify-content: center;
    padding: 70px 20px;
}

.card {
    max-width: 850px;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.18);
    backdrop-filter: blur(12px);
}

h1 {
    font-size: 36px;
    color: #6d28d9;
    margin-bottom: 6px;
}

.updated {
    font-size: 13px;
    color: #888;
    margin-bottom: 22px;
}

.intro {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #444;
}

section {
    margin-bottom: 22px;
}

h2 {
    font-size: 18px;
    color: #7c3aed;
    margin-bottom: 8px;
}

p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
}

ul {
    margin-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #444;
}

.email {
    color: #6d28d9;
    font-weight: 600;
    margin-top: 5px;
}

footer {
    margin-top: 35px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .card {
        padding: 28px;
    }

    h1 {
        font-size: 26px;
    }
}
