/* Resetări de bază */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Montserrat', sans-serif; background-color: #050505; color: #ffffff;
    min-height: 100vh; display: flex; flex-direction: column; align-items: center;
    overflow-x: hidden; padding: 40px 0 80px 0;
    
    /* AICI PUI POZA DE FUNDAL */
    /* Înlocuiește 'fundal.jpg' cu numele real al pozei tale de fundal */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), 
                      url('fundal.jpeg');
    background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat;
}

.content-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.brand-name { font-family: 'Permanent Marker', cursive; font-size: clamp(3.5rem, 12vw, 7rem); line-height: 1.1; color: #ffffff; text-transform: uppercase; margin-bottom: 3rem; margin-top: 2rem; text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9); transform: rotate(-3deg); text-align: center; }
.links-section { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; max-width: 400px; z-index: 2; }
.pro-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; padding: 20px 30px; border-radius: 15px; text-decoration: none; font-weight: 900; font-size: 1.3rem; letter-spacing: 3px; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); background: rgba(20, 20, 20, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.pro-btn:hover { transform: translateY(-5px) scale(1.02); }
.pro-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transform: skewX(-20deg); transition: left 0.7s ease; }
.pro-btn:hover::before { left: 150%; }
.fanvue-btn { border-color: rgba(255, 42, 42, 0.5); color: #ff3333; text-shadow: 0 0 10px rgba(255, 51, 51, 0.3); }
.fanvue-btn:hover { background: rgba(255, 42, 42, 0.15); box-shadow: 0 15px 35px rgba(255, 42, 42, 0.3); border-color: rgba(255, 42, 42, 0.8); color: #ff5555; }
.insta-btn:hover { background: rgba(255, 255, 255, 0.1); box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.5); }

/* CARUSEL */
.gallery-title { margin-top: 5rem; margin-bottom: 1.5rem; font-size: 1rem; letter-spacing: 5px; color: #888; text-transform: uppercase; font-weight: 700; }
.carousel-container { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; display: flex; gap: 20px; padding: 10px 50vw 30px 20px; -ms-overflow-style: none; scrollbar-width: none; }
.carousel-container::-webkit-scrollbar { display: none; }
.carousel-container::after { content: ''; flex: 0 0 20px; }
.image-wrapper { position: relative; flex: 0 0 75%; max-width: 320px; aspect-ratio: 3/4; border-radius: 15px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.05); background: #111; scroll-snap-align: center; transform: scale(0.95); transition: transform 0.3s ease; }
.image-wrapper:active { transform: scale(0.92); }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: blur(25px) brightness(0.7); transform: scale(1.15); transition: filter 0.6s ease, transform 0.6s ease; pointer-events: none; }
.image-wrapper.revealed img { filter: blur(0) brightness(1); transform: scale(1); }
.tap-overlay { 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    text-align: center; /* Aceasta forțează textul pe mijloc dacă se rupe pe 2 rânduri */
    padding: 10px; /* Protejează marginile pe telefoanele mici */
    background: rgba(0,0,0,0.3); 
    color: #ffffff; 
    font-size: 0.9rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: opacity 0.5s ease; 
    pointer-events: none; 
}

.tap-overlay svg { 
    width: 28px; 
    height: 28px; 
    margin: 0 auto 10px auto; /* Centrează perfect iconița */
    opacity: 0.9; 
    display: block;
}
.image-wrapper.revealed .tap-overlay { opacity: 0; }