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

body{
    background:#0f2027;
    color:white;
}

/* ================= HEADER ================= */
header{
    background:linear-gradient(135deg,#004d40,#00251a);
    padding:20px 40px;
    border-bottom:3px solid gold;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

/* ================= NAVBAR ================= */
nav{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:15px;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(8px);
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:gold;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

.btn-login{
    background:linear-gradient(45deg,gold,#ffcc00);
    color:#00251a;
    padding:8px 18px;
    border-radius:30px;
    font-weight:bold;
}

/* ================= HERO ================= */
.hero{
    position:relative;
    height:650px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/* VIDEO */
.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Overlay */
.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg, rgba(0,60,50,0.85), rgba(0,0,0,0.7));
    z-index:1;
}

/* ================= LINGKARAN PREMIUM ================= */
.hero-circle{
    position:relative;
    z-index:2;
    width:520px;
    height:520px;
    border-radius:50%;
    padding:50px;
    text-align:center;

    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);

    border:3px solid rgba(255,215,0,0.8);

    box-shadow:
        0 0 40px rgba(255,215,0,0.4),
        0 20px 60px rgba(0,0,0,0.7),
        inset 0 0 40px rgba(255,255,255,0.2);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    animation:float 5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

.hero-circle h2{
    font-size:28px;
    margin-bottom:15px;
}

.hero-circle p{
    font-size:17px;
    margin-bottom:25px;
}

/* BUTTON */
.btn-group{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:linear-gradient(45deg,#00c853,#009688);
    padding:12px 22px;
    border-radius:30px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary:hover{
    transform:scale(1.08);
}

.btn-success{
    background:linear-gradient(45deg,#1565c0,#0d47a1);
    padding:12px 22px;
    border-radius:30px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.btn-success:hover{
    transform:scale(1.08);
}

/* ================= FOOTER ================= */
footer{
    background:#001a14;
    text-align:center;
    padding:15px;
    border-top:2px solid gold;
}

/* ================= RESPONSIVE MOBILE ================= */
@media(max-width:768px){

    header{
        text-align:center;
    }

    .logo-area{
        flex-direction:column;
    }

    nav{
        flex-wrap:wrap;
        gap:15px;
    }

    .hero{
        height:600px;
        padding:20px;
    }

    .hero-circle{
        width:90%;
        height:auto;
        border-radius:30px;
        padding:30px;
    }

    .btn-group{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-success{
        width:100%;
        text-align:center;
    }
}

.hero-circle {
    position: relative;
    text-align: center;
}

/* Rainbow utama */
.rainbow-text {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, 
        red, orange, yellow, green, blue, indigo, violet);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowMove 5s linear infinite;
    letter-spacing: 3px;
}

@keyframes rainbowMove {
    0% { background-position: 0% }
    100% { background-position: 400% }
}

/* MASEMBA Neon + Glow */
.blink-glow {
    position: relative;
    display: inline-block;
    font-size: 55px;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff00ff,
        0 0 20px #00ffff,
        0 0 30px #ffff00,
        0 0 40px #00ff00;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.08); }
}

/* Sparkle container */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px cyan;
    animation: sparkleAnim 1.5s infinite ease-in-out;
}

/* Animasi sparkle */
@keyframes sparkleAnim {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}



.password-wrapper{
    position: relative;
}

.password-wrapper input{
    width: 100%;
    padding-right: 40px;
}

.toggle-password{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.toggle-password:hover{
    color: #000;
}

.btn-home{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#757575;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
    display:block;
    text-align:center;
    margin-top:10px;
}

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

.pengumuman-box{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
margin-top:25px;
}

.pengumuman-box h3{
margin-bottom:20px;
color:#333;
}

.btn-pengumuman{
display:block;
padding:15px;
margin-bottom:12px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.3s;
color:white;
}

.btn-pengumuman.berkas{
background:#4285f4;
}

.btn-pengumuman.berkas:hover{
background:#2c6be0;
}

.btn-pengumuman.wawancara{
background:#f4b400;
}

.btn-pengumuman.wawancara:hover{
background:#d99b00;
}
.pengumuman-btn{
display:flex;
justify-content:space-between;
gap:20px;
margin-top:20px;
}

.btn-pengumuman{
flex:1;
text-align:center;
padding:15px;
border-radius:12px;
text-decoration:none;
font-weight:600;
color:white;
box-shadow:0 6px 15px rgba(0,0,0,0.3);
transition:.3s;
}

.btn-pengumuman:hover{
transform:translateY(-3px);
}

.berkas{
background:linear-gradient(45deg,#2196f3,#00bcd4);
}

.wawancara{
background:linear-gradient(45deg,#ff9800,#ff5722);
}

.btn-pengumuman:hover{
transform:translateY(-3px) scale(1.03);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* WA FLOAT */
.wa-container{
position:fixed;
bottom:25px;
right:25px;
z-index:9999;
font-family:'Poppins',sans-serif;
}

/* tombol bulat */
.wa-button{
width:65px;
height:65px;
background:#25D366;
color:white;
font-size:30px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
animation:pulse 2s infinite;
}

/* animasi */
@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.1);}
100%{transform:scale(1);}
}

/* menu */
.wa-menu{
position:absolute;
bottom:80px;
right:0;
background:white;
padding:15px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
display:none;
min-width:200px;
animation:fadeIn 0.4s ease;
}

.wa-menu p{
margin:0 0 10px;
font-weight:600;
}

/* item */
.wa-item{
display:block;
text-decoration:none;
padding:10px;
margin:5px 0;
border-radius:10px;
color:#333;
background:#f1f1f1;
transition:0.3s;
}

.wa-item:hover{
background:#25D366;
color:white;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(10px);}
to{opacity:1; transform:translateY(0);}
}

.wa-button:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px #25D366, 0 0 40px #25D366;
}

/* WA item jadi flex */
.wa-item{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
padding:10px;
margin:5px 0;
border-radius:10px;
color:#333;
background:#f1f1f1;
transition:0.3s;
}

/* gambar avatar */
.wa-avatar{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
border:2px solid #25D366;
}

/* teks */
.wa-item div{
font-size:14px;
}

.wa-item small{
color:green;
}

/* ================= DESKTOP FIX ================= */
@media (min-width: 1024px){

    .wa-container{
        bottom:20px;
        right:20px;
    }

    .wa-menu{
        min-width:220px;
        padding:12px;
    }

.wa-menu{
    max-width:250px;
}

    .wa-item{
        padding:8px;
        gap:8px;
    }

    .wa-avatar{
        width:40px;
        height:40px;
    }

    .wa-item strong{
        font-size:13px;
    }

    .wa-item small{
        font-size:11px;
    }
}

@media (min-width:1024px){

    .wa-menu{
        opacity:0;
        transform:translateY(10px);
        pointer-events:none;
        transition:0.3s;
    }

    .wa-container:hover .wa-menu{
        opacity:1;
        transform:translateY(0);
        pointer-events:auto;
    }
}

.btn-download:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px #00c853;
}

.btn-download:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px #00c853, 0 0 40px #00c853;
}

.pdf-view{
    width:90%;
    height:80vh;
    border:none;
    border-radius:15px;
    box-shadow:
        0 0 20px rgba(0,0,0,0.5),
        0 0 40px rgba(0,255,150,0.3);
}

.btn-back{
    display:block;
    margin-top:15px;
    padding:10px;
    border-radius:10px;
    background:rgba(255,255,255,0.2);
    color:white;
    text-align:center;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.btn-back:hover{
    background:rgba(255,255,255,0.35);
    transform:translateY(-2px);
}

/* ================= ADMIN PREMIUM ONLY ================= */
.page-admin{
    background: linear-gradient(135deg,#eef2f7,#f8fafc);
    color:#1e293b;
}

/* HEADER KHUSUS ADMIN */
.page-admin header{
    background: linear-gradient(135deg,#0f766e,#065f46);
    border-bottom:none;
    box-shadow:0 5px 25px rgba(0,0,0,0.15);
}

/* CONTAINER */
.page-admin .container{
    padding:25px;
}

/* TABLE WRAPPER */
.page-admin .table-wrapper{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* TABLE */
.page-admin table{
    border-collapse:collapse;
}

/* HEADER TABLE */
.page-admin th{
    background: linear-gradient(135deg,#059669,#047857);
    color:white;
    font-weight:600;
    letter-spacing:0.3px;
}

/* ROW */
.page-admin tr{
    transition:0.2s;
}

.page-admin tr:hover{
    background: rgba(16,185,129,0.05);
    transform:scale(1.002);
}

/* TEXT TABLE */
.page-admin td{
    color:#334155;
}

/* BADGE */
.page-admin .badge{
    border-radius:999px;
    padding:6px 12px;
    font-size:11px;
}

/* SEARCH */
.page-admin #search{
    background:white;
    border-radius:12px;
    border:1px solid #e2e8f0;
}

/* BUTTON BACK */
.page-admin .btn-back{
    background: linear-gradient(135deg,#10b981,#059669);
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.page-admin .btn-back:hover{
    transform:translateY(-2px);
}

/* ACTION ICON */
.page-admin .action a{
    opacity:0.7;
    transition:0.2s;
}

.page-admin .action a:hover{
    transform:scale(1.2);
    opacity:1;
}

/* FORM ALASAN */
.page-admin .form-alasan{
    background:#fff;
    border-radius:10px;
    border:1px solid #fee2e2;
}