:root {
    --bg-left: linear-gradient(135deg, #020b1e 0%, #002366 50%, #800c10 100%);
    --bg-right: #07090e;
    --red: #e31e24;
    --navy: #002366;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-title: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-right);
    color: var(--text-white);
    min-height: 100vh;
    overflow: hidden;
}

/* Split Screen Wrapper */
.split-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel: Visual Focus */
.split-left {
    flex: 1;
    background: var(--bg-left);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

/* Diagonal stripe overlay for textured look */
.split-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.01) 0px,
        rgba(255, 255, 255, 0.01) 1px,
        transparent 1px,
        transparent 12px
    );
    z-index: 1;
}

/* Giant background watermark */
.watermark-year {
    position: absolute;
    font-family: var(--font-title);
    font-size: 22vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    letter-spacing: -10px;
    animation: pulseWatermark 8s infinite alternate ease-in-out;
}

@keyframes pulseWatermark {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.logo-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.left-logo {
    height: 180px;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(227, 30, 36, 0.2));
    animation: floatLogo 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.left-logo:hover {
    transform: scale(1.06) rotate(3deg);
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

/* Right Panel: Content & Interaction */
.split-right {
    width: 500px;
    background-color: var(--bg-right);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4.5rem 3.5rem;
    position: relative;
    z-index: 10;
    overflow-y: auto;
}

/* Top Area */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red);
    animation: pulse 1.5s infinite;
}

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

/* Middle / Main Content */
.main-content {
    margin: auto 0;
}

.tagline {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
    color: white;
}

.title span {
    color: var(--red);
}

.desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Minimalist Grid-less Countdown */
.countdown-minimal {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.count-num {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.count-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

/* Minimal Line Input Form */
.subscribe-form-minimal {
    margin-bottom: 2rem;
}

.input-line-group {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding: 10px 0;
    transition: border-color 0.3s ease;
}

.input-line-group:focus-within {
    border-color: var(--red);
}

.input-line-group input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.92rem;
    padding-right: 40px;
}

.input-line-group input::placeholder {
    color: rgba(255,255,255,0.2);
}

.btn-minimal-submit {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px;
}

.btn-minimal-submit:hover {
    color: var(--red);
    transform: translateX(4px);
}

.msg-box {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.msg-box.success { color: #10b981; }
.msg-box.error { color: #ef4444; }

/* Bottom Area: Social & Copy */
.right-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.15);
    font-weight: 500;
}

/* Responsive / Adaptability for Mobile */
@media (max-width: 968px) {
    .split-wrapper {
        flex-direction: column;
    }
    
    .split-left {
        flex: none;
        height: 35vh;
        padding: 2rem;
    }
    
    .left-logo {
        height: 120px;
    }
    
    .watermark-year {
        font-size: 35vw;
    }
    
    .split-right {
        width: 100%;
        flex: 1;
        padding: 3rem 2rem;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}
