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

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    background-image: url('bgjdb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Left Section */
.left-section {
    flex: 1;
    min-height: 100vh;
    background-image: url('bgjdb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    min-width: 0;
}

.content-wrapper {
    max-width: 550px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.logo-image {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.5s ease-out;
    object-fit: contain;
}

.main-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    line-height: 1.1;
}

.main-headline .line-1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.main-headline .line-2 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #a8e063;
    text-transform: uppercase;
    letter-spacing: -1px;
    background-color: #000000;
    padding: 14px 28px;
    margin-bottom: 14px;
    display: inline-block;
    width: fit-content;
    border-radius: 8px;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(168, 224, 99, 0.3),
        0 0 60px rgba(168, 224, 99, 0.2),
        inset 0 0 20px rgba(168, 224, 99, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out, glowGreen 2s ease-in-out infinite alternate;
    border: 2px solid rgba(168, 224, 99, 0.4);
    text-shadow: 0 0 10px rgba(168, 224, 99, 0.5), 0 0 20px rgba(168, 224, 99, 0.3);
}

.main-headline .line-3,
.main-headline .line-4,
.main-headline .line-5,
.main-headline .line-6 {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    background-color: #000000;
    padding: 14px 28px;
    margin-bottom: 14px;
    display: inline-block;
    width: fit-content;
    border-radius: 8px;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.15),
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out, glow 2s ease-in-out infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.main-headline .line-2:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(168, 224, 99, 0.4),
        0 0 80px rgba(168, 224, 99, 0.3),
        inset 0 0 30px rgba(168, 224, 99, 0.15);
    border-color: rgba(168, 224, 99, 0.6);
}

.main-headline .line-3:hover,
.main-headline .line-4:hover,
.main-headline .line-5:hover,
.main-headline .line-6:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 255, 255, 0.25),
        0 0 80px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes glow {
    from {
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(255, 255, 255, 0.15),
            0 0 60px rgba(255, 255, 255, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    to {
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(255, 255, 255, 0.25),
            0 0 80px rgba(255, 255, 255, 0.2),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

@keyframes glowGreen {
    from {
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(168, 224, 99, 0.3),
            0 0 60px rgba(168, 224, 99, 0.2),
            inset 0 0 20px rgba(168, 224, 99, 0.1);
    }
    to {
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(168, 224, 99, 0.4),
            0 0 80px rgba(168, 224, 99, 0.3),
            inset 0 0 30px rgba(168, 224, 99, 0.15);
    }
}

.sub-headline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 45px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.cta-button {
    background: linear-gradient(135deg, #a8e063 0%, #8dd347 100%);
    color: white;
    border: 2px solid #1a3a0a;
    border-radius: 12px;
    padding: 20px 55px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-bottom: 35px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 20px rgba(168, 224, 99, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(168, 224, 99, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b5e673 0%, #9de053 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

.countdown-container {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1.1s ease-out;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #a8e063;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 
        0 0 10px rgba(168, 224, 99, 0.5),
        0 0 20px rgba(168, 224, 99, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.additional-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatgpt-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #2d2d2d;
    color: white;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

/* Right Section - Image */
.right-section {
    flex: 0 0 40%;
    min-height: 100vh;
    background-image: url('bgjdb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.man-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logo-image {
        max-width: 150px;
        margin-bottom: 25px;
    }
    
    .main-headline .line-1,
    .main-headline .line-2,
    .main-headline .line-3,
    .main-headline .line-4,
    .main-headline .line-5,
    .main-headline .line-6 {
        font-size: 2.5rem;
    }
    
    .left-section {
        padding: 0 40px;
    }
    
    .content-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    
    .logo-image {
        max-width: 120px;
        margin-bottom: 20px;
    }
    
    .container {
        flex-direction: column;
        min-height: auto;
    }
    
    .left-section {
        flex: 1;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .right-section {
        flex: 1;
        min-height: 400px;
    }
    
    .main-headline .line-1,
    .main-headline .line-2,
    .main-headline .line-3,
    .main-headline .line-4,
    .main-headline .line-5,
    .main-headline .line-6 {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
}

