/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* HEADING */
h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #facc15;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* SUB HEADINGS */
h2 {
    margin-top: 25px;
    font-size: 20px;
    color: #facc15;
    border-left: 4px solid #facc15;
    padding-left: 10px;
}

/* TEXT */
p {
    margin-top: 10px;
    font-size: 15px;
}

/* LIST */
ul {
    margin-top: 10px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
    list-style: "✔ ";
}

/* LINKS */
a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* HOVER EFFECT */
.container:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}

/* FLOATING HOME BUTTON */
.floating-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #facc15;
    color: #000;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.floating-home:hover {
    background: #eab308;
    transform: translateY(-2px);
}