:root {
    --primary-bg: #120129;
    --accent-color: #ffcc00;
    --glass-color: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    /* Latar belakang gradasi dinamis */
    background: radial-gradient(circle at top left, #2b1055, #120129 50%, #4a0e4e);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Container utama agar rapi di mobile & desktop */
.main-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Navigation Icons */
.top-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.icon-btn {
    background: var(--glass-color);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.icon-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Profile Section */
.profile-header {
    text-align: center;
    margin-bottom: 35px;
}

.avatar-container {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
    margin: 0 auto 15px;
}

.main-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.badge-name {
    background: var(--glass-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 35px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* Link Cards */
.links-grid {
    width: 100%;
    margin-bottom: 30px;
}

.glass-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-color);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    margin-bottom: 16px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.glass-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.link-left {
    display: flex;
    align-items: center;
}

.mini-logo-wrapper {
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-logo-wrapper img {
    width: 80%;
}

.link-label {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Banner */
.banner-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.promo-img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.banner-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    100% { left: 150%; }
}

/* Footer */
.main-footer {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
}

.brand-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.powered-by { font-size: 0.7rem; }
.brand-name { font-weight: 700; font-size: 0.9rem; }

.icon-xs { width: 16px; opacity: 0.6; }