:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #FFC65C;
    /* Gold/Yellow */
    --font-main: 'Ubuntu', sans-serif;
    --font-display: 'Unbounded', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.2;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 20px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

/* Text Content */
.date {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.headline {
    font-family: var(--font-display);
    font-size: 1.8rem;
    /* Reduced base size for mobile */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    width: 100%;
}

.headline .highlight {
    color: var(--accent-color);
    white-space: nowrap;
    /* Ensure CHIRCHIQ SHAHAR is on one line */
}

.price-text {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin: 25px 0;
    font-weight: 500;
    line-height: 1.4;
}

.price-text .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Button */
.cta-button {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: 20px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    min-width: unset;
    max-width: 100%;
    border: 2px solid var(--accent-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 97px;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 198, 92, 0.5);
}

/* Images */
.image-wrapper img,
.visual-content img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.desktop-only {
    display: none;
}

/* Responsive Design */
@media (min-width: 480px) {
    .headline {
        font-size: 2.5rem;
    }

    .cta-button {
        width: auto;
        font-size: 1.4rem;
        padding: 24px 80px;
        min-width: 300px;
    }
}

@media (min-width: 1024px) {
    body {
        height: 100vh;
        justify-content: center;
    }

    .container {
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        position: relative;
    }

    .header {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
        margin-bottom: 0;
    }

    .main-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 60px;
        margin-top: 60px;
        width: 100%;
    }

    .text-content {
        flex: 0 0 45%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .visual-content {
        flex: 0 0 50%;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    .headline {
        font-size: 3.8rem;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .date {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .price-text {
        font-size: 1.8rem;
        margin: 40px 0;
    }

    .cta-button {
        width: auto;
        min-width: 340px;
        font-size: 1.6rem;
        padding: 28px 80px;
    }
}

/* Large Desktop Tweaks */
@media (min-width: 1440px) {
    .headline {
        font-size: 4.5rem;
    }

    .container {
        max-width: 1600px;
    }
}

/* Small Mobile Tweaks */
@media (max-width: 374px) {
    .headline {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 18px 10px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 198, 92, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 198, 92, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 198, 92, 0);
    }
}