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

body {
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

/* Background Coding Blur */
.bg-coding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=2070') center/cover;
    filter: blur(8px) brightness(0.3);
    z-index: -1;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
}

/* Banner Design */
.banner-container {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 115, 255, 0.2);
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Section - Dikasih Jarak dari Banner */
.profile-section {
    text-align: center;
    margin-top: 60px; /* Jarak antar elemen */
    margin-bottom: 40px;
}

.profile-img-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid #007bff;
    padding: 5px;
    background: #050505;
    margin-top: -120px; /* Tampilan profil agak naik ke banner tapi tetap ada space */
    position: relative;
    z-index: 5;
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

h1 { margin-top: 15px; font-size: 24px; color: #00d2ff; }
p { color: #ccc; font-size: 14px; }

/* Infinite Slider */
.slider-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

.slider-track img {
    width: 250px;
    height: 140px;
    margin-right: 15px;
    border-radius: 10px;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 3)); }
}

/* Menu Grid */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.menu-item i {
    margin-right: 15px;
    font-size: 20px;
    color: #00d2ff;
}

.menu-item:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.script-btn {
    background: linear-gradient(45deg, #007bff, #00d2ff);
    font-weight: bold;
    border: none;
}
