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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* --- Header & Navigare --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.7); /* Mai transparent pentru a se vedea video-ul */
            backdrop-filter: blur(5px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f1c40f; /* Auriu */
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
        }

        nav ul { display: flex; gap: 30px; }
        nav a { text-shadow: 0 0 5px rgba(0,0,0,1); font-weight: 500; }
        nav a:hover { color: #f1c40f; }

        /* --- Secțiunea Hero (Home) cu Video Background --- */
        #acasa {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        /* Containerul video-ului */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -2; /* Cel mai în spate */
        }

        /* Iframe-ul YouTube scalat să acopere tot ecranul */
        .video-background iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            /* Truc pentru a forța aspect ratio-ul să acopere ecranul (simulate object-fit: cover) */
            min-width: 177.77vh; /* 16:9 ratio */
            min-height: 56.25vw;
            transform: translate(-50%, -50%);
            pointer-events: none; /* Utilizatorul nu poate da click pe video (pauză etc) */
        }

        /* Overlay întunecat peste video pentru lizibilitatea textului */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Ajustează opacitatea aici */
            z-index: -1;
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 4px 15px rgba(0,0,0,0.9);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #f0f0f0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.9);
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #f1c40f;
            color: #000;
            font-weight: bold;
            font-size: 1.1rem;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
        }

        .btn:hover {
            background-color: #d4ac0d;
            transform: scale(1.05);
        }

        /* --- Secțiunea Servicii --- */
        #servicii {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60%;
            height: 3px;
            background: #f1c40f;
            margin: 10px auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #333;
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: #f1c40f;
            box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
        }

        .card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #f1c40f; }

        /* --- Secțiunea Contact --- */
        #contact {
            padding: 80px 20px;
            background-color: #111;
            border-top: 1px solid #222;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-info { text-align: center; margin-bottom: 20px; }

        form { display: flex; flex-direction: column; gap: 15px; }

        input, textarea {
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #333;
            background: #0a0a0a;
            color: #fff;
            font-family: inherit;
        }

        input:focus, textarea:focus { outline: none; border-color: #f1c40f; }

        /* --- Footer --- */
        footer {
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
            color: #777;
            border-top: 1px solid #222;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            header { padding: 20px; justify-content: center; flex-direction: column; gap: 10px;}
            .video-background iframe {
                 /* Ajustare pentru mobil ca să nu taie prea mult din video */
                width: 300%; 
                left: -100%;
            }
        }
	.vanzare-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e74c3c; /* Roșu pentru urgență/atenție */
    color: #ffffff;
    z-index: 9999; /* Cel mai de sus element */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.vanzare-banner p {
    margin: 0;
}

.btn-vanzare {
    background-color: #fff;
    color: #e74c3c;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-vanzare:hover {
    background-color: #f1c40f;
    color: #000;
}

/* Ajustăm meniul existent să nu fie acoperit de banner */
header {
    top: 50px; /* Coborâm meniul cu înălțimea bannerului */
}

/* Ajustare pentru mobil */
@media (max-width: 600px) {
    .vanzare-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    header {
        top: 80px; /* Coborâm meniul mai mult pe mobil */
    }
}


#sound-toggle {
    position: absolute;
    bottom: 50px; /* L-am urcat puțin mai sus */
    right: 50px;  /* Mai mult spațiu față de margine */
    z-index: 100;
    background: rgba(0, 0, 0, 0.7); /* Fundal mai închis pentru contrast */
    border: 2px solid #ffffff;      /* Bordură mai groasă */
    color: #ffffff;
    
    /* AICI E MODIFICAREA PRINCIPALĂ DE MĂRIME: */
    padding: 18px 40px;   
    font-size: 1.2rem;    /* Text mai mare (aprox 19px) */
    font-weight: bold;
    
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;            /* Spațiu mai mare între iconiță și text */
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6); /* Umbră puternică să iasă în evidență */
}

#sound-toggle:hover {
    background: #f1c40f;       /* Galben auriu la hover */
    color: #000000;
    border-color: #f1c40f;
    transform: scale(1.1);     /* Se mărește puțin când pui mouse-ul */
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.6); /* Strălucire aurie */
}

/* Ajustare pentru Mobil (să nu acopere tot ecranul pe telefon) */
@media (max-width: 768px) {
    #sound-toggle {
        bottom: 30px;
        right: 20px;
        padding: 12px 25px; /* Puțin mai mic pe mobil, dar tot generos */
        font-size: 1rem;
        border-width: 1.5px;
    }
}

