@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* { box-sizing: border-box; }
body, html { margin: 0; padding: 0; padding-top: var(--ticker-top-h, 0px); padding-bottom: var(--ticker-bottom-h, 0px); box-sizing: border-box; height: 100%; font-family: 'Arial', sans-serif; background-color: var(--bg-color); overflow-x: hidden; color: #fff; }
.page-wrapper { display: flex; flex-direction: column; min-height: 100vh; width: 100%; }
.layout-centered .footer-section { flex-grow: 1; justify-content: center; padding-bottom: 0; }

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--main-color), 0 0 40px var(--main-color); }
    20%, 24%, 55% { opacity: 0.9; text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 10px var(--main-color); }
}
@keyframes slowFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.ticker-wrap { width: 100%; overflow: hidden; white-space: nowrap; position: fixed; z-index: 100; left: 0; display: flex; align-items: center; }
.ticker-top { top: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ticker-bottom { bottom: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.ticker-content { display: inline-block; padding-left: 100%; font-family: 'Orbitron', sans-serif; letter-spacing: 2px; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

.logo-container { height: 60vh; width: 100%; display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; margin-top: 5vh; }
.logo-img { max-width: 90%; max-height: 90%; object-fit: contain; -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%); mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%); }

.banner-wrapper { position: relative; z-index: 50; width: 100%; margin-top: -5vh; margin-bottom: 5vh; display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; padding: 0 10px; box-sizing: border-box; }
.promo-banner { display: block; width: 468px; max-width: 100%; height: auto; transition: transform 0.3s ease; border-radius: 4px; border: 1px solid #222; background: #000; box-shadow: 0 0 10px #000; }
.promo-banner:hover { transform: scale(1.05); border-color: var(--main-color); box-shadow: 0 0 15px var(--main-color); }
.promo-banner img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* Banner Erweiterung: optionaler Text unter jedem Banner */
.banner-item { width: 468px; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
.banner-caption { margin-top: 8px; font-size: 0.85rem; color: #aaa; text-align: center; line-height: 1.4; }

.footer-section { min-height: 15vh; padding-bottom: 80px; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; z-index: 10; position: relative; }
.coming-soon { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; letter-spacing: 6px; text-transform: uppercase; font-weight: bold; margin-bottom: 10px; animation: neonFlicker 4s infinite alternate, slowFloat 6s ease-in-out infinite; text-align: center; color: #fff; }
.credit-line { font-family: 'Arial', sans-serif; font-size: 1.0rem; letter-spacing: 2px; color: #888; }

.action-bar { margin-top: 20px; display: flex; gap: 20px; }
.neon-btn { background: transparent; border: 1px solid var(--main-color); color: var(--main-color); padding: 10px 20px; font-family: 'Orbitron'; cursor: pointer; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.neon-btn:hover { background: var(--main-color); color: #fff; box-shadow: 0 0 15px var(--main-color); }
.legal-links { margin-top: 15px; font-size: 0.8rem; }
.legal-links a { color: #555; text-decoration: none; margin: 0 10px; cursor: pointer; }
.legal-links a:hover { color: #fff; }

.modal { display: none; position: fixed; z-index: 200; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); backdrop-filter: blur(5px); }
.modal-content { background-color: #111; margin: 5% auto; padding: 30px; border: 1px solid var(--main-color); width: 90%; max-width: 500px; border-radius: 5px; position: relative; box-shadow: 0 0 30px rgba(0,0,0,0.8); color: #ddd; font-family: 'Roboto', sans-serif; }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover { color: #fff; }
input, textarea, select { width: 100%; padding: 10px; margin: 10px 0; background: #222; border: 1px solid #444; color: #fff; box-sizing: border-box; border-radius: 3px; }
input:focus, textarea:focus, select:focus { border-color: var(--main-color); outline: none; }
.honeypot { display: none; }
@media (max-width: 768px) { .logo-container { height: 50vh; } .coming-soon { font-size: 1.5rem; } .promo-banner { max-width: 90%; } }

/* Optional: Banner untereinander (nur wenn im Backend aktiviert) */
.banner-wrapper.banner-stack{flex-direction:column;align-items:center;}
.banner-wrapper.banner-stack .banner-item{width:100%;}
.banner-wrapper.banner-stack .promo-banner{margin:0 auto;}