/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.image-landscape-container {
    display: none;
}

@media screen and (orientation: landscape) {
/* @media (min-width: 900px) { */
    body {
        padding: 0 !important;
        display: block !important;
    }

    body > *:not(.image-landscape-container) {
        display: none !important;
    }

    .image-landscape-container {
        width: 100%;
        height: 100vh;
        display: block;
    }

    .image-landscape-container img {
        width: 100%;
        height: 100vh;
        /* object-fit: cover; */
        display: block;
    }
}

body {
    font-family: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at center, #3c82cf 0%, #1e4b91 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-inline: 16px;
    text-align: center;
    overflow-x: hidden;
}

/* Container Utama */
.content-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
    justify-content: space-between;
}

/* 2. Style Placeholder Logo */
.logo-placeholder {
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px dashed rgba(255, 255, 255, 0.4); */
    /* background: rgba(255, 255, 255, 0.1); */
    /* border-radius: 12px; */
}
.logo-placeholder img {
    width: 50%;
}

/* 3. Style Text Utama */
.main-text-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 4px;
}

.heading-enthusiasm {
    font-size: 20px;
    font-weight:8px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: -5px;
    letter-spacing: -0.5px;
}

.heading-announcement {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px
}

.text-info {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* 4. Style Brands / Badges Box */
.badges-container {
    width: 100%;
    margin: 4px 0;
}

.badges-container img {
    height: auto;
    width: 100%;
}

/* 6. Style Call Center & Customer Care */
.contact-container {
    width: 100%;
    max-width: 450px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.contact-label {
    font-size: clamp(13px, 4vw, 15px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.contact-card {
    width: 100%;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-card:active {
    transform: scale(0.98);
}

.contact-icon {
    flex-shrink: 0;
    display: block;
}

.contact-number {
    font-size: clamp(13px, 4vw, 15px);
    font-weight: 800;
    font-style: italic;
    color: #dc2626;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

/* 5. Style Disclaimer */
.disclaimer-section {
    font-size: 10.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    width: 100%;
    max-width: 450px;
}

.disclaimer-title {
    font-weight: 800;
    color: #ffda79;
}

.disclaimer-note {
    font-style: italic;
    margin-top: 3px;
    display: block;
    color: rgba(255, 255, 255, 0.65);
}

/* 7. Style Sosial Media & Footer (Marquee Pill) */
.marquee-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
    overflow: hidden;
    display: flex;
    margin-top: 20px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    margin-right: 20px;
}

.marquee-pill {
    background: #e6f0fa;
    border-radius: 50px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #002b75;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.social-item:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

.social-icon {
    flex-shrink: 0;
    display: block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}