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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #f0f0f0;
    line-height: 1.5;
    overflow: hidden;
}

/* container 100vh fără scroll */
.app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* --- HEADER negru #000, simplu --- */
.site-header {
    flex-shrink: 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 2rem;
    height: 80px;
    max-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}

.domain-logo {
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(120deg, #ffffff, #c0c0ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.header-buttons {
    display: flex;
    gap: 1.2rem;
}

/* BUTON LOGIN - transparent, border alb, efect fin la hover */
.btn-login {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.btn-login:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* BUTON REGISTER - fundal galben, text negru, efect dragut la hover */
.btn-register {
    background: #FFD700;
    border: none;
    padding: 0.5rem 1.4rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000000;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
    background: #FFC107;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* --- ZONA CENTRALĂ (hero + gradient între header și footer) --- */
.mid-container {
    flex: 1;
    background-image: linear-gradient(180deg, rgba(62,0,14,.2), #3e000e 50.48%, rgba(62,0,14,.2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
}

.mid-container::-webkit-scrollbar {
    width: 4px;
    background: #1a0a10;
}
.mid-container::-webkit-scrollbar-thumb {
    background: #7a2a3a;
    border-radius: 20px;
}

/* cardul hero */
.hero-card {
    max-width: 1280px;
    width: 100%;
    /*min-height: 444px;*/
    margin: 0 auto;
    background-image: url('imgi_9_media_4c2e5049faf537514703df9d3ae64b3341945b822d.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    border-radius: 2.5rem;
    padding: 2.5rem 2.8rem;
    border: 1px solid rgba(255, 80, 120, 0.25);
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.6);
    transition: all 0.2s;
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* partea stângă: heading + text */
.hero-left {
    flex: 1.2;
    min-width: 240px;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(125deg, #FFFFFF, #FFB6C1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description-simple {
    font-size: 1.1rem;
    color: #e2d4dc;
    max-width: 90%;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.micro-note {
    font-size: 0.85rem;
    color: #af8c9a;
    margin-top: 1rem;
    border-left: 2px solid #ff6f91;
    padding-left: 1rem;
}

/* partea dreaptă: SVG */
.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-svg-container {
    width: 100%;
    border-radius: 2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.animated-svg-container img {
    width: 100%;
    max-width: unset !important;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(255, 80, 120, 0.2));
}

/* --- FOOTER negru #000, simplu --- */
.site-footer {
    flex-shrink: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: #8f8faa;
    max-height: 85px;
}

.footer-copyright {
    letter-spacing: 0.2px;
}

.footer-simple-links {
    display: flex;
    gap: 1.5rem;
}

.footer-simple-links a {
    color: #b0a0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-simple-links a:hover {
    color: #ffa5bb;
}

/* Responsive */
@media (max-width: 780px) {
    .hero-card {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem;
    }
    .hero-left h1 {
        font-size: 2.4rem;
    }
    .hero-description-simple {
        max-width: 100%;
    }
    .micro-note {
        text-align: left;
    }
    .site-header {
        padding: 0 1.2rem;
    }
    .domain-logo {
        font-size: 1.3rem;
    }
    .header-buttons {
        gap: 0.8rem;
    }
    .btn-login, .btn-register {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        border-radius: 6px !important;
    }
    .site-footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 1.4rem;
    }
    .hero-left h1 {
        font-size: 1.75rem;
    }
    .hero-description-simple {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* animație subtilă */
@keyframes subtlePulse {
    0% { opacity: 0.98; }
    100% { opacity: 1; }
}

.mid-container {
    animation: subtlePulse 3s infinite alternate;
}

@media (max-width: 780px) {
    .site-header {
        flex-direction: column;
        justify-content: center;
        gap: 0.8rem;
        height: auto;
        padding: 1rem;
        text-align: center;
    }

    .header-buttons {
        justify-content: center;
    }
}

/* Ajustări logo */
.domain-logo img {
    display: block;
    width: 162px;
    height: 28px;
}

.domain-logo {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: unset;
}

.footer-copyright img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 780px) {
    .domain-logo img {
        margin: 0 auto;
    }

    .mid-container {
        padding-top: 240px;
    }
}

/* NOU: container extra sub hero-card */
.mid-container {
    flex-direction: column;
}
.extra-content {
    max-width: 1280px;
    width: 100%;
    margin: 2rem auto 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 80, 120, 0.2);
    /*text-align: center;*/
}

.extra-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(125deg, #FFFFFF, #FFB6C1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.extra-content p {
    font-size: 1rem;
    color: #e2d4dc;
    line-height: 1.6;
    /*max-width: 90%;*/
    margin: 0 auto;
}

/* responsive pentru mobil */
@media (max-width: 780px) {
    .extra-content {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .extra-content h2 {
        font-size: 1.4rem;
    }

    .extra-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

.hero-left .btn-register,
.extra-content .btn-register {
    margin-top: 1.75rem;
}