:root {
    --primary-color: #E29617;
    --secondary-color: #16325b;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', Helvetica, Arial, sans-serif;
    /*font-family: 'Arial', sans-serif;*/
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

/* === EFEK ZOOM SAAT HOVER === */

.zoom-in-hover {
    transition: transform 0.3s ease;
    /* Pastikan parent-nya punya overflow: hidden */
}

.zoom-in-hover:hover {
    /*transform: translateY(-15px) scale(1.1);*/
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.paramount-land.com/lib/images/fcr_2024/img%201.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.hero-logo {
    max-width: 450px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* ===== GANTI KODE LAMA ANDA DENGAN INI ===== */

/* 1. Atur wadah pembungkus (Desktop View) */
.container_khusus {
    display: flex;
    align-items: stretch; /* Membuat tinggi box sama */
    justify-content: center; /* Pusatkan grup box */
    width: 100%;
}

/* 2. Atur DIV BIRU (Desktop View) */
.div-biru {
    flex-basis: 200px; /* Lebar tetap untuk desktop */
    flex-shrink: 0; /* Jangan biarkan div ini menyusut */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-right: -15px !important; /* Trik agar gambar menempel */
}

/* 3. Atur DIV KUNING (Desktop View) */
.div-kuning {
    flex-basis: 680px; /* Lebar tetap untuk desktop */
    flex-shrink: 0; /* Jangan biarkan div ini menyusut */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* 4. Reset margin (jika ada) */
.div-biru, .div-kuning {
    margin-top: 0;
    margin-bottom: 0;
}

/* ===== BATAS KODE PENGGANTI ===== */

/* Pastikan wrapper memiliki dimensi tetap dan posisi relatif */
.guest-star-wrapper {
    /* Tentukan lebar maksimal yang masuk akal */
    width: 100%;
    max-width: 450px; /* Misalnya, maksimum 350px agar tidak terlalu besar di desktop */
    margin: 0 15px; /* Tambahkan sedikit margin agar tidak terlalu mepet */
    
    /* Teknik untuk memastikan kedua kotak memiliki tinggi yang sama (square/rasio yang sama) */
    position: relative;
    padding-bottom: 90%; /* Membuat tinggi sama dengan lebar (rasio 1:1) */
    height: 0; 
    
    /* Pengaturan visual box yang mirip dengan gambar Anda */
    border-radius: 20px;
    overflow: hidden; /* Penting agar gambar tidak keluar dari batas */
    /* Tambahkan background jika Anda ingin kotak tanpa gambar memiliki warna */
    /*background-color: #333; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);*/
}

/* Atur Gambar di dalam wrapper */
.guest-star-wrapper .guest-star-img {
    /* Gambar harus mengisi seluruh ruang yang tersedia di wrapper */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Penting: Memastikan gambar mengisi seluruh area tanpa terdistorsi */
    object-fit: contain; 
    object-position: top center; /* Sesuaikan posisi fokus gambar jika perlu */
}

.event-info {
    /*background: rgba(255,255,255,0.15);*/
    background: rgba(247,202,24,1);
    /*backdrop-filter: blur(15px);*/
    border-radius: 25px;
    padding: 2.5rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

/* Scroll Arrow Styles */
.scroll-arrow {
    position: relative;
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.scroll-link {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    background: rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.arrow-container:hover {
    background: rgba(226,150,23,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.arrow-container i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-container span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    white-space: nowrap;
}

/* Section Styles */
.section {
    padding: 1rem 0;
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* Info Cards */
.info-card {
    background: transparent;
    border-radius: 25px;
    /*padding: 0.5rem;*/
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    border: 3px solid transparent;
    overflow: hidden;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.info-card:hover::before {
    opacity: 0.1;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    /*box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: var(--primary-color);*/
}

.info-card-ari:hover {
    transform: translateY(-15px) scale(1.01);
    /*box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: var(--primary-color);*/
}

.info-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover img {
    transform: scale(1.1);
}

.info-card-ari:hover img {
    transform: scale(1.0);
}

/* Entertainment Section */
.entertainment-section {
    color: white;
}

.entertainment-section .section-overlay {
    background: rgba(0,0,0,0.3);
}

.entertainer-card {
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

.entertainer-card:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.25);
}

.entertainer-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 15px;
}

.entertainer-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.entertainer-card p {
    font-size: 1.1rem;
}

/* Prize Section */
.prize-section {
    background: var(--bg-light);
    position: relative;
}

.prize-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.prize-box {
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    border: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.prize-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(226,150,23,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.prize-content {
    position: relative;
    z-index: 2;
}

/* Optimized Schedule Image Styles */
.schedule-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.schedule-image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    display: inline-block;
}

.schedule-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    object-fit: contain;
}

.schedule-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

.schedule-image:focus {
    outline: 2px solid #E29617;
    outline-offset: 3px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(226, 150, 23, 0.05) 0%, transparent 50%, rgba(226, 150, 23, 0.05) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.schedule-image-container:hover .image-overlay {
    opacity: 1;
}

.click-hint {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.schedule-image-container:hover .click-hint {
    opacity: 1;
    bottom: -25px;
}

.schedule-image.loading {
    opacity: 0.8;
    filter: blur(0.5px);
}

.schedule-image.loaded {
    opacity: 1;
    filter: none;
    animation: fadeInSmooth 0.5s ease-out;
}

.schedule-image.error {
    opacity: 0.5;
    filter: grayscale(100%);
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid rgba(220, 53, 69, 0.3);
    font-size: 0.9rem;
}

/* Registration Section */
/*
  NOTE: Aturan .registration-container ini telah diganti
  untuk mencocokkan inline style (flex) yang digunakan,
  karena aturan 'grid' asli tidak terpakai.
*/
.registration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
    padding-bottom: 50px;
    gap: 3rem; /* Diambil dari aturan grid asli */
}

.qr-container {
    background: transparent;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
}

.qr-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.register-content {
    text-align: center;
}

.register-content h4 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif; /* <-- Dipindahkan dari inline style */
}

.register-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
}

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), #f39c12);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(226,150,23,0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(226,150,23,0.4);
    background: linear-gradient(45deg, #f39c12, var(--primary-color));
}

.register-btn i {
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links p {
    color: white;
    margin-bottom: 1rem;
}

.social-links a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(45deg, var(--secondary-color), #0f1f3d);
    color: white;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    object-fit: cover;
}

/* Back to Top Button */
#backToTop {
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(226,150,23,0.3);
}

#backToTop:hover {
    background: #d4851a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226,150,23,0.4);
}

/*
====================================
ATURAN BARU DARI INLINE STYLES
====================================
*/

#image1 {
    margin-left: auto !important; /* !important dijaga untuk override flex justify-content */
    margin-right: auto !important;
}

#image2 {
    width: 95%; /* Base style dari inline style */
}

#image3 {
    width: 100%; /* Base style dari inline style */
}

#image5 {
    width: 80%; /* Base style dari inline style */
}

#image6 {
    width: 100%; /* Base style dari inline style */
}

#image7 {
    width: 75%; /* Base style dari inline style */
    margin: auto; /* Menambahkan ini agar terpusat */
    display: block; /* Menambahkan ini agar terpusat */
}

/* Container untuk gambar doorprize */
.prize-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

/* Aturan background-image untuk tiap section */
#event-info-bg {
    background-image: url('https://www.paramount-land.com/lib/images/fcr_2024/img-2.png');
}

#performance-info-bg {
    background-image: url('https://www.paramount-land.com/lib/images/fcr_2024/img-3.png');
}

#prize-section-bg {
    background-image: url('https://www.paramount-land.com/lib/images/fcr_2024/img-4.png');
}

#footer-bg {
    min-height: 100px;
    background-image: url('https://www.paramount-land.com/lib/images/pcw25/FOOTER_2025_SLIM.png');
}


/*
====================================
AKHIR DARI ATURAN BARU
====================================
*/


/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSmooth {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.floating:nth-child(2) {
    animation-delay: 2s;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-logo {
        max-width: 300px;
    }
    
    .arrow-container i {
        font-size: 1.8rem;
    }
    
    .arrow-container span {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .registration-container {
        /* Mengganti aturan grid menjadi flex-direction */
        flex-direction: column;
        gap: 2rem;
    }
    
    .prize-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-logo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* ... (kode media query Anda yang lain) ... */

    /* PERUBAHAN UNTUK BOX BIRU & KUNING DI MOBILE */
    .container_khusus {
        flex-direction: column; /* Mengubah susunan menjadi vertikal */
        gap: 1rem; /* Memberi jarak antar box */
        align-items: center; /* Memastikan box terpusat rapi */
    }
    
    .div-biru, .div-kuning {
        flex-basis: auto; /* Mereset lebar tetap dari desktop */
        width: 95%; /* Mengisi 95% lebar layar mobile */
        max-width: 400px; /* Batas lebar maksimum di mobile */
    }
    
    .div-biru {
        margin-right: 0 !important; /* Menghilangkan margin negatif di mobile */
    }
    
    /* ... (kode media query Anda yang lain) ... */

    .hero-section {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .event-info {
        padding: 1.5rem;
        margin-top: 1rem;
        position: relative;
    }
    
    .scroll-arrow {
        position: relative;
        margin-top: 0rem;
        left: 0;
        transform: none;
        display: block;
        text-align: center;
        z-index: 10;
    }
    
    .arrow-container {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        background: rgba(0,0,0,0.4);
        padding: 1rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .arrow-container i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .arrow-container span {
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title img {
        max-width: 250px;
    }
    
    .prize-boxi { /* Typo asli dipertahankan jika ada style, tapi di bawah sudah diperbaiki */
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .register-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .info-card, .entertainer-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Media query ini sudah ditangani di @(max-width: 992px)
       tapi kita pastikan lagi
    */
    .registration-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Mobile schedule image optimizations */
    .schedule-image-wrapper {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .schedule-image-container {
        max-width: 100%;
    }

    .schedule-image {
        border-radius: 12px;
        /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);*/
    }

    .schedule-image:hover {
        transform: translateY(-3px);
        /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);*/
    }

    .click-hint {
        font-size: 0.75rem;
        padding: 4px 10px;
        bottom: -25px;
    }

    .schedule-image-container:hover .click-hint {
        bottom: -20px;
    }

    .schedule-image:active {
        transform: scale(0.98);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 140px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-logo {
        max-width: 180px;
    }
    
    .event-info {
        padding: 1rem;
        border-radius: 20px;
    }
    
    .scroll-arrow {
        margin-top: 0rem;
    }
    
    .arrow-container {
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    .arrow-container i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .arrow-container span {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .section-title img {
        max-width: 200px;
    }
    
    .info-card, .entertainer-card {
        padding: 1rem;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .logo-pcw {
        margin-top: -50px;
    }
    
    .logo-19thh {
        margin-top: -100px;
    }
    
    #image2 {
        width: 50%; /* !important dihapus, akan tetap override base style 95% */
    }
    
    #image4 {
        width: 300px !important; /* Tidak ada base style, jadi !important boleh ada/tidak */
    }
    
    #image5 {
        width: 100%; /* !important dihapus, akan tetap override base style 80% */
    }
    
    #image7 {
        margin-top: -100px;
    }
    
    .guest-star-wrapper {
        width: 80%;
        max-width: 280px; /* Misalnya, maksimum 350px agar tidak terlalu besar di desktop */
        margin: 0 15px; /* Tambahkan sedikit margin agar tidak terlalu mepet */
        position: relative;
    }
    
    /* --- PERBAIKAN UNTUK GAMBAR DOORPRIZE --- */

    /* 1. Target pembungkus gambar (div.info-card-ari) di dalam prize-section */
    .prize-section .info-card-ari {
        margin-top: -80px; 
        margin-bottom: 0; 
        position: relative; 
        z-index: 10;
    }

    /* 2. Target gambar di dalamnya agar lebih besar */
    .prize-section .info-card-ari img {
        /*
          Aturan #image5 { width: 100% } di atas
          sudah menggantikan fungsi ini,
          tapi kita biarkan untuk keamanan (specificity)
        */
        width: 100% !important; 
        max-width: 400px; 
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* 3. Tarik box kuning (.prize-box) sedikit ke atas */
    .prize-box {
        margin-top: -10px; /* Sesuaikan nilai ini agar pas */
    }
    
    .event-info {
        margin-top: -60px;
    }
    
    .qr-container {
        margin-top: -50px;
    }
    
    .register-content {
        margin-top: -90px;
    }
    
    .register-content h4 {
        font-size: 1.3rem;
    }
    
    .register-content p {
        font-size: 0.9rem;
    }
    
    .register-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .entertainer-card h3 {
        font-size: 1.3rem;
    }
    
    .entertainer-card p {
        font-size: 0.9rem;
    }
    
    /* Small mobile schedule image optimizations */
    .schedule-image-wrapper {
        margin-bottom: 0.8rem;
    }

    .schedule-image {
        border-radius: 10px;
    }

    .click-hint {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* FIX 1 (Lanjutan): Mengatur ulang lebar gambar QR */
    #image6 {
        width: 100%; /* !important dihapus */
    }

    /* FIX 2: Menghilangkan space putih di footer */
    
    /* Selector lama: .section-bg[style*="FOOTER_2025_SLIM.png"] */
    #footer-bg {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        /* !important dijaga untuk override base style min-height: 100px */
        min-height: 30px !important; 
    }

    /* Selector lama: .section:has(.section-bg[style*="FOOTER_2025_SLIM.png"]) */
    .section:has(#footer-bg) {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background-color: var(--secondary-color, #16325b); 
    }
    
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4851a;
}

/* Performance Optimizations */
.hero-bg, .section-bg {
    will-change: transform;
}

.info-card, .entertainer-card, .register-btn, .schedule-image {
    will-change: transform;
}

/* Print Styles */
@media print {
    .header, .scroll-arrow, #backToTop {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 0;
        min-height: auto;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .schedule-image-wrapper {
        break-inside: avoid;
    }

    .schedule-image {
        box-shadow: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .image-overlay,
    .click-hint {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* FIX 1: Memperbaiki typo .prize-boxi */
    .prize-box { /* <-- Ini adalah perbaikan dari typo .prize-boxi */
        margin: 1rem;
        padding: 2rem 1rem;
    }

    /* Mengosongkan style .prize-boxi yang salah */
    .prize-boxi {
        margin: unset;
        padding: unset;
    }
}