/* /assets/css/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { background-color: #000; color: #fff; min-height: 100vh; overflow-x: hidden; overflow-y: auto; padding: 40px 0; display: flex; justify-content: center; align-items: center; }

/* Hintergrund Wrapper & Animation */
.bg-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; background: #050505;}
.bg-vignette { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 85%); z-index: 10; }

.bg-slide { position: absolute; top: -5%; left: -5%; width: 110%; height: 110%; background-size: cover; background-position: center; opacity: 0; transition: opacity 2s ease-in-out; animation: bg-panning 30s linear infinite alternate; filter: brightness(0.5); z-index: 1; }
.bg-slide.active { opacity: 1; z-index: 2; }
@keyframes bg-panning { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-1%, -1%) scale(1.02); } }

/* Content Container */
.content-container { position: relative; z-index: 20; text-align: center; width: 90%; max-width: 900px; padding-top: 50px;}

/* Logo Styling */
.logo-container { margin-bottom: 30px; display: flex; justify-content: center; align-items: center; }
.main-logo { max-height: 400px; width: auto; object-fit: contain; filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.8)); display: block; margin: 0 auto; transition: max-height 0.3s ease; }

/* Text Styling */
.message-container { margin-bottom: 40px; }
.message-container h1 { font-size: 2.2rem; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; background: var(--veneras-grad); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gold-shimmer 4s ease-in-out infinite; }
.message-container p { font-size: 1.1rem; line-height: 1.6; color: #cccccc; }
@keyframes gold-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

/* NEU: Produkt Slider */
.prod-slider-container { width: 100%; overflow: hidden; margin: 50px 0; padding: 20px 0; }
.prod-track { display: flex; gap: 20px; animation: scrollProd 40s linear infinite; width: max-content; }
.prod-card { width: 220px; background: rgba(20,20,22,0.6); padding: 15px; border-radius: 15px; border: 1px solid rgba(200,155,123,0.3); backdrop-filter: blur(10px); transition: 0.3s; }
.prod-card:hover { border-color: var(--veneras-rose); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.prod-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; object-fit: cover; aspect-ratio: 1/1; background: #000; }
.prod-card h4 { color: var(--veneras-rose); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
@keyframes scrollProd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Glassmorphism Timer */
.timer-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.time-box { background: rgba(20, 20, 22, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(200, 155, 123, 0.2); border-radius: 15px; padding: 20px; min-width: 110px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); transition: 0.3s; }
.time-box:hover { transform: translateY(-5px); border-color: var(--veneras-rose); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(200, 155, 123, 0.05); }
.time-box span { display: block; font-size: 3rem; font-weight: 900; background: var(--veneras-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); }
.time-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-top: 5px; font-weight: 700; }

/* NEU: Buttons & Modals */
.btn-register { background: var(--veneras-grad); color: #000; border: none; padding: 20px 50px; border-radius: 50px; font-family: var(--main-font); font-weight: 900; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.btn-register:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(200,155,123,0.3); }

.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 10000; justify-content: center; align-items: center; backdrop-filter: blur(10px); animation: fadeIn 0.3s ease; }
.modal-box { background: #111; padding: 40px; border-radius: 25px; border: 1px solid var(--veneras-rose); max-width: 450px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.9); }
.modal-input { width: 100%; padding: 18px 20px; margin-bottom: 15px; background: #000; border: 1px solid #333; color: #fff; border-radius: 12px; font-family: inherit; font-size: 14px; outline: none; transition: 0.3s; box-sizing: border-box; }
.modal-input:focus { border-color: var(--veneras-rose); }
.btn-close { background: transparent; border: none; color: #666; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; margin-top: 20px; transition: 0.3s; }
.btn-close:hover { color: #fff; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .main-logo { max-height: 250px; }
    .message-container h1 { font-size: 1.8rem; }
    .time-box { min-width: 90px; padding: 15px; }
    .time-box span { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .content-container { width: 95%; padding-top: 20px; }
    .main-logo { max-height: 180px; }
    .message-container h1 { font-size: 1.4rem; letter-spacing: 1px; }
    .message-container p { font-size: 0.95rem; }
    .timer-container { flex-wrap: wrap; gap: 15px; }
    .time-box { min-width: 45%; padding: 15px 10px; }
    .time-box span { font-size: 2rem; }
    .time-label { font-size: 0.7rem; }
    .btn-register { padding: 18px 30px; font-size: 14px; width: 100%; }
}