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

body{
    background:#080412;

    color:white;

    min-height:100vh;
}

body::before{
    content:"";

    position:fixed;

    width:500px;
    height:500px;

    top:-150px;
    left:-150px;

    border-radius:50%;

    background:rgba(160,32,240,.08);

    filter:blur(120px);

    pointer-events:none;

    z-index:-1;
}

body::after{
    content:"";

    position:fixed;

    width:400px;
    height:400px;

    bottom:-100px;
    right:-100px;

    border-radius:50%;

    background:rgba(160,32,240,.06);

    filter:blur(120px);

    pointer-events:none;

    z-index:-1;
}

/* Header */

header{
    text-align:center;

    padding:100px 20px 50px;
}

.back-btn{
    display:inline-block;

    margin-bottom:20px;

    color:#c77dff;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.back-btn:hover{
    color:white;
}

header h1{
    color:#c77dff;

    text-shadow:
    0 0 10px #a020f0,
    0 0 25px rgba(160,32,240,.7);
}

header p{
    margin-top:10px;

    color:#aaa;
}

/* Group */

.group{
    max-width:1200px;

    margin:auto;

    padding:30px 20px;
}

.group h2{
    color:#c77dff;

    text-shadow:
    0 0 10px rgba(160,32,240,.6);
}

/* Grid */

.staff-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

/* Card */

.staff-card{
    border:1px solid rgba(160,32,240,.25);

    border-radius:20px;

    padding:20px;

    text-align:center;

    transition:.3s;
}

.staff-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 0 15px rgba(160,32,240,.5),
    0 0 30px rgba(160,32,240,.35),
    0 0 50px rgba(160,32,240,.2);
}

/* Foto */

.staff-card img{
    width:110px;
    height:110px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #a020f0;

    margin-bottom:15px;

    transition:.3s;
}

.staff-card:hover img{
    box-shadow:
    0 0 10px #c77dff,
    0 0 25px #a020f0,
    0 0 50px rgba(160,32,240,.6);
}

/* Nama */

.staff-card h3{
    margin-bottom:5px;

    color:white;
}

/* Jabatan */

.staff-card p{
    color:#bbb;

    margin-bottom:12px;
}

/* Tombol TikTok */

.tiktok-btn{
    background:#1a102b;

    border:1px solid #a020f0;

    box-shadow:
    0 0 10px rgba(160,32,240,.25);
}

.tiktok-btn:hover{
    background:#a020f0;

    box-shadow:
    0 0 10px #a020f0,
    0 0 25px rgba(160,32,240,.7),
    0 0 40px rgba(160,32,240,.4);

    transform:translateY(-2px);
}

/* Footer */

footer{
    text-align:center;

    padding:40px 20px;

    color:#777;
}

/* Responsive */

@media(max-width:768px){

    header h1{
        font-size:2.2rem;
    }

    .group h2{
        font-size:1.5rem;
    }

    .staff-grid{
        grid-template-columns:1fr;
    }

  }
