body {
    background-color: #0a1c41; /* Dark blue background like GTA VI site */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}


.left-panel {
    width: 50%;
    background: linear-gradient(135deg, #0a1c41 0%, #183c6b 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.right-panel {
    width: 50%;
    background-image: url('https://www.rockstargames.com/VI/_next/image?url=%2FVI%2F_next%2Fstatic%2Fmedia%2FJason_and_Lucia_02_landscape.8aced7fd.jpg&w=1920&q=75');
    background-size: cover;
    background-position: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 40px;
}

.left-content {
    text-align: center;
    max-width: 80%;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.tagline {
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
    color: #8eb7e5;
}

#countdown {
    font-size: 3em;
    margin: 20px 0 40px;
    color: #ffffff;
}

.time-unit {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.time-label {
    font-size: 0.4em;
    letter-spacing: 5px;
    margin-top: -10px;
    color: #8eb7e5;
}

.time-small {
    font-size: 0.3em;
    margin-top: 10px;
    color: #8eb7e5;
}

.cta-button {
    background-color: #7CD3FB; /* Light blue button color from GTA VI site */
    color: #1a3752;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
}

.release-date {
    margin-top: 20px;
    color: #8eb7e5;
    font-style: italic;
}

/* Mobile responsive design */
@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }
    
    .left-panel, .right-panel {
        width: 100%;
    }
    
    .left-panel {
        padding: 40px 20px;
    }
    
    .right-panel {
        height: 50vh;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    #countdown {
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    .left-panel {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}