*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#020617;
    color:#ffffff;
    line-height:1.8;
    min-height:100vh;
    padding:40px 20px;
    position:relative;
    overflow-x:hidden;
}

/* Background Glow Effects */

body::before{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#ec489955,transparent 70%);
    top:-150px;
    right:-150px;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#06b6d455,transparent 70%);
    bottom:-150px;
    left:-150px;
    z-index:-1;
}

/* Main Container */

.container{
    max-width:1100px;
    margin:auto;
    background:rgba(15,23,42,0.85);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:50px;
    backdrop-filter:blur(12px);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

/* Title */

h1{
    font-size:48px;
    color:#22d3ee;
    margin-bottom:10px;
    font-weight:700;
}

.updated{
    color:#94a3b8;
    margin-bottom:40px;
    font-size:15px;
}

/* Sections */

section{
    margin-bottom:45px;
}

h2{
    color:#ec4899;
    font-size:28px;
    margin-bottom:18px;
    font-weight:600;
}

h3{
    color:#38bdf8;
    margin-top:20px;
    margin-bottom:12px;
    font-size:22px;
}

p{
    color:#e2e8f0;
    margin-bottom:15px;
}

/* Lists */

ul{
    margin-left:25px;
    margin-top:10px;
}

li{
    color:#cbd5e1;
    margin-bottom:10px;
}

/* Links */

a{
    color:#22d3ee;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* Highlight Boxes */

.notice{
    background:rgba(236,72,153,0.08);
    border-left:4px solid #ec4899;
    padding:20px;
    border-radius:12px;
    margin:20px 0;
}

.info{
    background:rgba(34,211,238,0.08);
    border-left:4px solid #22d3ee;
    padding:20px;
    border-radius:12px;
    margin:20px 0;
}

/* Tables */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    margin-bottom:20px;
}

table th{
    background:#0f172a;
    color:#22d3ee;
    padding:14px;
    text-align:left;
    border:1px solid rgba(255,255,255,0.08);
}

table td{
    padding:14px;
    border:1px solid rgba(255,255,255,0.08);
    color:#cbd5e1;
}

/* Footer */

footer{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0f172a;
}

::-webkit-scrollbar-thumb{
    background:#334155;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#475569;
}

/* Mobile */

@media(max-width:768px){

    body{
        padding:20px 10px;
    }

    .container{
        padding:25px;
        border-radius:20px;
    }

    h1{
        font-size:34px;
    }

    h2{
        font-size:24px;
    }

    h3{
        font-size:20px;
    }

    p,
    li{
        font-size:15px;
    }

    table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }
}