/* =========================
   FTCS PINO - Style
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

/* Background Glow */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top,#2563eb33,transparent 40%),
    radial-gradient(circle at bottom,#f9731633,transparent 40%);
    z-index:-2;
}

/* Loader */

#loader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader-logo{
    font-size:32px;
    font-weight:800;
    color:#3b82f6;
    animation:pulse 1s infinite;
}

@keyframes pulse{

0%{transform:scale(1);}
50%{transform:scale(1.1);}
100%{transform:scale(1);}

}

/* Navbar */

header{

position:sticky;
top:0;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px;

backdrop-filter:blur(15px);

background:rgba(255,255,255,.05);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;

}

.logo{

font-size:20px;
font-weight:700;

}

#menuBtn{

background:none;
border:none;
color:white;

font-size:26px;

cursor:pointer;

}

/* Menu */

#mobileMenu{

display:none;

flex-direction:column;

background:#111827;

}

#mobileMenu a{

padding:16px;

color:white;

text-decoration:none;

border-bottom:1px solid rgba(255,255,255,.08);

}

#mobileMenu a:hover{

background:#1f2937;

}

/* Hero */

.hero{

padding:70px 20px;

text-align:center;

}

.hero h1{

font-size:40px;

font-weight:800;

margin-bottom:10px;

}

.hero p{

color:#cbd5e1;

margin-bottom:30px;

}

.hero-button{

display:flex;

gap:12px;

justify-content:center;

flex-wrap:wrap;

}

/* Buttons */

.btn-blue,
.btn-orange{

padding:14px 22px;

border-radius:14px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.btn-blue{

background:#2563eb;
color:white;

box-shadow:0 0 18px #2563eb66;

}

.btn-orange{

background:#f97316;
color:white;

box-shadow:0 0 18px #f9731666;

}

.btn-blue:hover{

transform:translateY(-3px);

}

.btn-orange:hover{

transform:translateY(-3px);

}

/* Section */

section{

padding:30px 18px;

}

section h2{

margin-bottom:18px;

font-size:24px;

}

/* Card */

.card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

padding:18px;

margin-bottom:18px;

transition:.3s;

}

.card:hover{

transform:translateY(-4px);

box-shadow:0 0 25px rgba(59,130,246,.25);

}

/* Pengumuman */

#judul{

font-size:20px;

margin-bottom:8px;

color:#fff;

}

#isi{

color:#cbd5e1;

line-height:1.6;

white-space:pre-line;

}

.ann-date{

display:block;

margin-top:12px;

font-size:12px;

color:#64748b;

}

/* Rules */

.rules-container{

display:flex;

flex-direction:column;

gap:18px;

}

.rule-card{

background:rgba(255,255,255,.05);

border-radius:20px;

padding:22px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.rule-card:hover{

transform:scale(1.02);

}

.rule-card h3{

margin-bottom:8px;

}

.rule-card p{

color:#cbd5e1;

margin-bottom:16px;

}

.rule-card a{

color:#3b82f6;

text-decoration:none;

font-weight:600;

}

/* Statistik */

.stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:12px;

text-align:center;

}

/* Footer */

footer{

text-align:center;

padding:30px;

color:#94a3b8;

}

/* Desktop */

@media(min-width:768px){

.hero{

padding:120px 20px;

}

.hero h1{

font-size:60px;

}

.rules-container{

display:grid;

grid-template-columns:1fr 1fr;

}

.stats{

grid-template-columns:repeat(3,220px);

justify-content:center;

}

}