/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 520px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===== PROFILE ===== */
.profile-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.profile {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== LOGO ===== */
.logo {
    width: 220px;
    display: inline-block;
    margin: 0 auto 6px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* ===== SUBTITLE ===== */
.subtitle {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ===== SOCIAL ===== */
.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 18px;
}

.social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ===== CARD TEBUS ===== */
.card-tebus {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 16px;
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-tebus h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.card-tebus h3 i {
    color: #f59e0b;
    margin-right: 6px;
}

.tebus-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-text {
    font-size: 9px;
    opacity: 0.8;
    text-align: center;
    line-height: 1.2;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    padding: 0 2px;
}

.btn {
    display: block;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    margin: 0 auto;
    max-width: 280px;
}

.btn-green {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-green:hover {
    background: #1ebe5c;
    border-color: #1ebe5c;
    transform: scale(1.02);
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider span {
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* ===== EVENT CARD ===== */
.event-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px 18px;
    margin: 12px auto;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: 0.3s;
    text-align: center;
    max-width: 100%;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-terbaru {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-terbaru i {
    margin-right: 4px;
    font-size: 12px;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    margin-bottom: 6px;
}

.event-title:hover {
    color: #facc15;
}

.event-meta {
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.event-meta i {
    margin-right: 3px;
}

.event-meta .dot {
    opacity: 0.4;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    letter-spacing: 0.5px;
}

.btn-gallery:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-gallery i {
    transition: 0.3s;
    font-size: 14px;
}

.btn-gallery:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .container { padding: 20px 14px; }
    .profile { width: 90px; height: 90px; }
    .logo { width: 180px; }
    .event-title { font-size: 17px; }
    .event-card { padding: 16px 14px; }
    .card-tebus { padding: 14px 12px; }
    .tebus-steps { gap: 2px; }
    .step-num { width: 24px; height: 24px; font-size: 10px; }
    .step-text { font-size: 8px; }
    .step-arrow { font-size: 10px; }
    .btn { font-size: 13px; padding: 10px; }
    .btn-gallery { font-size: 13px; padding: 8px 22px; }
}

@media (max-width: 400px) {
    .profile { width: 75px; height: 75px; }
    .logo { width: 150px; }
    .event-title { font-size: 15px; }
    .event-meta { font-size: 11px; }
    .btn-gallery { font-size: 12px; padding: 8px 18px; }
    .badge-terbaru { font-size: 10px; padding: 3px 12px; }
}