* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #2C3E50, #4CA1AF);
    color: white;
    text-align: center;
}

/* SIDEBAR FIX - Mutat spre margine */
.sidebar {
    width: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    position: fixed;
    height: 100%;
    left: 10px; /* Muta sidebar spre marginea din stânga */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.sidebar ul {
    list-style: none;
    padding: 10px;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* TEXT CENTRAT PERFECT */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 4px 15px rgba(255, 255, 255, 0.5);
    animation: glowText 2s infinite alternate;
}

p {
    font-size: 22px;
    color: #ddd;
    max-width: 700px;
}

/* ANIMAȚIE LA ÎNCĂRCARE */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* EFECT DE GLOW PENTRU TEXT */
@keyframes glowText {
    from { text-shadow: 3px 3px 15px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 6px 6px 20px rgba(255, 255, 255, 1); }
}

/* BUY PAGE */
.buy-container {
    margin-left: 220px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 50px;
}

/* PREMIUM SECTION */
.premium-info {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.premium-info img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

/* Alinierea imaginilor într-un container */
.image-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.image-container img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-container img:hover {
    transform: scale(1.05);
}

.premium-info:hover {
    transform: scale(1.05);
}

.buy-button {
    background-color: #FFD700;
    color: black;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #FFC107;
}

/* SLIDER DE IMAGINI */
.slider-container {
    position: relative;
    width: 60%;
    max-width: 700px;
    overflow: hidden;
    margin: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    border-radius: 10px;
}

/* SĂGEȚILE DE NAVIGARE */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Eliminăm secțiunea duplicată din main (FAQ din .faq) și o înlocuim cu noul bloc FAQ pe dreapta */

/* FAQ PE DREAPTA cu animație la click */
.faq-right {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: left;
}

.faq-right h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

/* Elementul care declanșează extinderea */
.faq-right .faq-click {
    font-size: 18px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.faq-right .faq-click:hover {
    color: white;
}

/* Blocul cu conținutul suplimentar (ascuns inițial) */
.faq-right .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* Dacă vrei activare pe hover (sau, în schimb, activează prin JS cu clasa "active") */
/*
.faq-right .faq-click:hover + .faq-content {
    max-height: 400px;
}
*/

/* Pentru activare pe click (cu JS care adaugă/elimină clasa "active") */
.faq-right .faq-click.active + .faq-content {
    max-height: 400px;
}
