* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #000;
    position: relative;
    color: #ffffff;
}

/* ==================== ANIMASI BACKGROUND BERGERAK ==================== */
body::before {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: bgMovement 18s infinite alternate ease-in-out;
}

@keyframes bgMovement {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-15px, -10px);
    }
    100% {
        transform: scale(1.15) translate(10px, 15px);
    }
}

/* ==================== CONTAINER LAYOUT ==================== */
.container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* ==================== ANIMASI EFEK LAINNYA ==================== */
@keyframes borderPulse {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 10px rgba(255, 140, 0, 0.6); }
    100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
}

@keyframes buttonShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ff0000; }
    50% { text-shadow: 0 0 15px #ffd700, 0 0 25px #ff4500, 0 0 35px #ff0000; }
    100% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ff0000; }
}

/* ==================== SIDEBAR KIRI ==================== */
.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-box {
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    background: rgba(13, 13, 13, 0.85);
    animation: borderPulse 3s infinite ease-in-out;
}

.main-logo {
    color: #ffd700;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    animation: textGlow 2s infinite ease-in-out;
}

.card-feature {
    background: rgba(18, 18, 18, 0.85);
    border: 2px solid #b8860b;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.card-feature .icon {
    font-size: 32px;
    color: #ffd700;
}

.card-feature .title {
    font-size: 12px;
    color: #d3d3d3;
}

.card-feature .value {
    font-size: 22px;
    font-weight: bold;
    color: #ffd700;
}

/* ==================== KONTEN UTAMA ==================== */
.main-content {
    background: rgba(17, 17, 17, 0.88);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: borderPulse 3s infinite ease-in-out;
}

.banner {
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #1a0000 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.banner-title {
    font-size: 40px;
    color: #ffd700;
    font-style: italic;
    font-weight: 900;
    animation: textGlow 2s infinite ease-in-out;
}

.badge {
    display: inline-block;
    margin-top: 5px;
    font-size: 11px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    padding: 3px 10px;
    border-radius: 20px;
    color: #ffd700;
    letter-spacing: 1px;
}

.announcement {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: #ffd700;
    font-weight: bold;
}

/* ==================== TOMBOL ACTION ==================== */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-gold {
    position: relative;
    display: block;
    text-align: center;
    background: linear-gradient(to bottom, #ffe066, #d4af37);
    color: #000;
    text-decoration: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transform: skewX(-25deg);
    animation: buttonShine 2.5s infinite;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

.btn-gold:active {
    transform: scale(0.98);
}

/* ==================== INFORMASI SITUS ==================== */
.site-info {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #b8860b;
    border-radius: 10px;
    padding: 15px;
}

.site-info h3 {
    text-align: center;
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 10px;
}

.site-info table {
    width: 100%;
    border-collapse: collapse;
}

.site-info td {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.gold-text {
    color: #ffd700;
    font-weight: bold;
}

/* ==================== SIDEBAR KANAN ==================== */
.sidebar-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}

.game-card {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
    cursor: pointer;
}

.game-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 6px;
    display: block;
}

.game-card p {
    font-size: 11px;
    font-weight: bold;
    color: #ffd700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}