/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #1A1A1A; /* Deep Charcoal */
    color: #FFFFFF;
    overflow-x: hidden;
}

/* BANNER CONTAINER */
.neuf-banner {
    position: relative;
    width: 100%;
    height: 600px; /* Înălțime Desktop */
    background: radial-gradient(circle at 20% 50%, #0a1f3d 0%, #1A1A1A 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid #0066FF;
}

/* CIRCUIT BACKGROUND PATTERN */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* PARTICLE ANIMATIONS */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #0066FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #0066FF;
    animation: floatParticle 4s infinite ease-in-out alternate;
}

.p1 { width: 4px; height: 4px; top: 20%; left: 30%; animation-delay: 0s; }
.p2 { width: 6px; height: 6px; top: 60%; left: 70%; animation-delay: 1s; }
.p3 { width: 3px; height: 3px; top: 40%; left: 50%; animation-delay: 2s; }
.p4 { width: 5px; height: 5px; top: 80%; left: 20%; animation-delay: 0.5s; }
.p5 { width: 4px; height: 4px; top: 15%; left: 80%; animation-delay: 1.5s; }
.p6 { width: 7px; height: 7px; top: 70%; left: 40%; animation-delay: 2.5s; }
.p7 { width: 3px; height: 3px; top: 30%; left: 60%; animation-delay: 3s; }
.p8 { width: 5px; height: 5px; top: 90%; left: 90%; animation-delay: 0.8s; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0.4; }
    100% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

/* MAIN CONTENT LAYOUT */
.banner-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 90%;
}

/* NINE SYMBOL WRAPPER */
.nine-symbol-wrapper {
    position: relative;
    width: 250px;
    height: 350px;
    flex-shrink: 0;
}

.nine-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.6));
    animation: pulseGlow 3s infinite ease-in-out;
}

.circuit-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawCircuit 2.5s forwards ease-out;
}

@keyframes drawCircuit {
    to { stroke-dashoffset: 0; }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 35px rgba(0, 102, 255, 0.9)); }
}

/* FLOW LINES (Energy streams) */
.flow-lines {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 200px;
    transform: translateY(-50%);
    z-index: -1;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, transparent);
    opacity: 0.7;
    animation: flowRight 2s infinite linear;
}

.l1 { top: 20%; width: 100%; animation-delay: 0s; }
.l2 { top: 50%; width: 80%; animation-delay: 0.5s; }
.l3 { top: 80%; width: 120%; animation-delay: 1s; }

@keyframes flowRight {
    0% { transform: translateX(-50px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(50px); opacity: 0; }
}

/* TEXT CONTENT */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-name {
    font-size: 5rem; /* ~80px */
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.tagline {
    font-size: 1.5rem; /* ~24px */
    font-weight: 400;
    color: #E0E0E0;
    letter-spacing: 1px;
    border-left: 4px solid #0066FF;
    padding-left: 20px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 1024px) {
    .neuf-banner { height: 500px; }
    .nine-symbol-wrapper { width: 180px; height: 260px; }
    .brand-name { font-size: 3.5rem; }
    .tagline { font-size: 1.2rem; }
    .flow-lines { width: 150px; right: -50px; }
}

/* Mobile */
@media (max-width: 768px) {
    .neuf-banner { 
        height: auto; 
        min-height: 500px;
        padding: 60px 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .nine-symbol-wrapper {
        width: 140px;
        height: 200px;
    }
    
    .flow-lines {
        display: none; /* Ascundem liniile de flux pe mobile pentru claritate */
    }
    
    .brand-name { font-size: 2.8rem; }
    
    .tagline {
        font-size: 1rem;
        border-left: none;
        border-top: 3px solid #0066FF;
        padding-left: 0;
        padding-top: 15px;
    }
}
/* ... (Păstrează tot CSS-ul anterior pentru reset, banner, particule, nine-symbol) ... */

/* --- NOU: STILURI PENTRU LAUNCH INFO & CTA --- */

.launch-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.1s both; /* Apare ultimul */
}

.countdown-label {
    font-size: 0.9rem;
    color: #0066FF;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Ubuntu', sans-serif;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
    backdrop-filter: blur(5px);
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.time-box small {
    font-size: 0.7rem;
    color: #8C8C8C;
    margin-top: 5px;
    text-transform: uppercase;
}

.separator {
    font-size: 1.5rem;
    color: #0066FF;
    font-weight: bold;
    margin-top: -15px;
}


/* BUTON NEWSLETTER */
.cta-newsletter {
    position: relative;
    margin-top: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #0066FF;
    color: #FFFFFF;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-newsletter:hover {
    background: #0066FF;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
    border-color: #0066FF;
}

.cta-newsletter:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-newsletter:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 8px;
        justify-content: center;
    }
    
    .time-box {
        min-width: 55px;
        padding: 8px 10px;
    }
    
    .time-box span {
        font-size: 1.4rem;
    }
    
    .cta-newsletter {
        width: 100%;
        padding: 14px 20px;
    }
}