﻿/**
 * Radio-LiSa Web Portal
 *
 * @project     Radio-LiSa
 * @author      datOnkel (SW-Development)
 * @website     https://sw-development.de
 * @copyright   (c) 2026 SW-Development. Alle Rechte vorbehalten.
 *
 * Dieses Projekt wurde von datOnkel erstellt,
 * auch bekannt unter SW-Development (https://sw-development.de).
 */
.show-status {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 0.92em;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.show-status.live {
    background: #ff1744;
    color: #fff;
    animation: live-blink 1s infinite alternate;
}
@keyframes live-blink {
    0% { box-shadow: 0 0 0 0 #ff174488; }
    100% { box-shadow: 0 0 8px 4px #ff1744cc; }
}
.show-status.upcoming {
    background: #0087ff;
    color: #fff;
}
.show-status.past {
    background: #222b3a;
    color: #9db6d3;
}
/* SCHEDULE WEEK MODERN CARDS */
.schedule-week-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0 0 0;
    justify-content: center;
}
.schedule-day-card {
    background: #0c1d36;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,200,255,0.08);
    min-width: 240px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    overflow: hidden;
}
.schedule-day-card.schedule-day-today {
    box-shadow: 0 0 0 2px #009dff, 0 4px 24px rgba(0,157,255,0.18);
}
.schedule-day-header {
    background: #081120;
    color: #0087ff;
    font-weight: bold;
    padding: 14px 18px;
    font-size: 1.1em;
    border-bottom: 1px solid #12233f;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.schedule-day-date {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 400;
    color: #5a7a9a;
}
.schedule-today-badge {
    background: #009dff;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.schedule-day-body {
    padding: 12px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.schedule-show-card {
    background: #12233f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    box-shadow: 0 1px 4px rgba(0,200,255,0.05);
    transition: box-shadow .2s;
}
.schedule-show-card:hover {
    box-shadow: 0 4px 16px rgba(0,200,255,0.15);
}
.schedule-show-empty {
    background: none;
    color: #888;
    text-align: center;
    box-shadow: none;
    font-style: italic;
}

/* SENDEPLAN WOCHENNAVIGATION */
.sp-week-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0 14px 0;
    justify-content: center;
    flex-wrap: wrap;
}
.sp-nav-btn {
    background: rgba(0,157,255,0.12);
    border: 1px solid rgba(0,157,255,0.25);
    color: #009dff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}
.sp-nav-btn:hover:not(:disabled) {
    background: rgba(0,157,255,0.28);
}
.sp-nav-btn:disabled {
    cursor: not-allowed;
}
.sp-week-label {
    font-size: 0.9rem;
    color: #8fb3d8;
    font-weight: 600;
    text-align: center;
    min-width: 200px;
}
.sp-loading {
    text-align: center;
    color: #5a7a9a;
    padding: 32px 0;
    font-size: 0.95rem;
}
.show-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #0087ff22;
    background: #222;
}
.show-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.show-time {
    color: #0087ff;
    font-size: 0.98em;
    font-weight: 500;
}
.show-title {
    font-size: 1.08em;
    font-weight: bold;
    color: #fff;
}
.show-moderator {
    color: #9db6d3;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 5px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050b16;
    color:#fff;
    font-family:Segoe UI, sans-serif;
    padding-bottom:84px;
}

/* HEADER */

.header{
    height:90px;
    padding:0 30px;
    background:#081120;
    border-bottom:1px solid #12233f;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area img{
    height:60px;
}

.nav{
    display:flex;
    gap:20px;
}

.nav a{
    color:#9db6d3;
    text-decoration:none;
    padding:14px 20px;
    border-radius:12px;
    transition:.3s;
    font-weight:600;
}

.nav a:hover,
.nav .active{
    background:#0c1d36;
    color:#0087ff;
    box-shadow:0 0 20px rgba(0,200,255,.3);
}

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.login-btn{
    background:transparent;
    border:1px solid #0087ff;
    color:#0087ff;
    padding:10px 20px;
    border-radius:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:background .2s, color .2s;
}
.login-btn:hover{
    background:#0087ff;
    color:#fff;
}

/* User-Menü (eingeloggt) */
.user-menu {
    position: relative;
}

.um-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(0,135,255,.08);
    border: 1px solid rgba(0,135,255,.3);
    border-radius: 50px;
    padding: 5px 14px 5px 5px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    color: #e8f4ff;
}
.um-trigger:hover {
    background: rgba(0,135,255,.18);
    border-color: rgba(0,135,255,.55);
}
.um-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(0,135,255,.4);
    flex-shrink: 0;
}
.um-name {
    font-size: .88rem;
    font-weight: 600;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.um-chevron {
    font-size: .7rem;
    color: #4a6a8f;
    transition: transform .2s;
}
.um-trigger[aria-expanded="true"] .um-chevron,
#userMenuDropdown.open ~ .um-chevron {
    transform: rotate(180deg);
}

.um-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: #0c1627;
    border: 1px solid #17345f;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
    z-index: 9999;
    overflow: hidden;
    flex-direction: column;
}
.um-dropdown.open {
    display: flex;
}

.um-dropdown-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(0,135,255,.05);
}
.um-dropdown-head img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(0,135,255,.35);
    flex-shrink: 0;
}
.um-dropdown-head strong {
    display: block;
    color: #e8f4ff;
    font-size: .92rem;
    font-weight: 700;
}
.um-dropdown-head span {
    color: #4a6a8f;
    font-size: .78rem;
    text-transform: capitalize;
}

.um-dropdown-body {
    padding: 8px 6px;
}
.um-dropdown-body a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #c8dff5;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.um-dropdown-body a i {
    width: 18px;
    text-align: center;
    color: #4a6a8f;
    transition: color .15s;
}
.um-dropdown-body a:hover {
    background: rgba(0,135,255,.1);
    color: #fff;
}
.um-dropdown-body a:hover i {
    color: #009dff;
}

.um-dropdown-footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 6px 6px 8px;
}
.um-dropdown-footer a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #ff6b6b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: background .15s;
}
.um-dropdown-footer a i {
    width: 18px;
    text-align: center;
}
.um-dropdown-footer a:hover {
    background: rgba(255,68,68,.1);
}

/* NEWS TICKER */
.news-ticker {
    width:100%;
    background:#0c1d36;
    color:#fff;
    border-bottom:2px solid #0087ff;
    padding:0 0 0 30px;
    display:flex;
    align-items:center;
    gap:10px;
    height:44px;
    font-size:16px;
    position:relative;
    z-index:10;
}
.ticker-title {
    font-weight:bold;
    color:#0087ff;
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}
.ticker-box {
    flex:1;
    min-width:0;
    height:30px;
    margin-right:14px;
    display:flex;
    align-items:center;
    overflow:hidden;
    border:1px solid rgba(0, 157, 255, 0.28);
    border-radius:9px;
    background:rgba(5, 16, 31, 0.55);
    padding:0 10px;
}
.ticker-content {
    display:inline-block;
    white-space:nowrap;
    animation:ticker-move 40s linear infinite;
}
@keyframes ticker-move {
    0% { transform:translateX(100%); }
    100% { transform:translateX(-100%); }
}
    border-radius:12px;
    cursor:pointer;
}

.clock-box{
    text-align:center;
}

#clock{
    font-size:32px;
    color:#0087ff;
}

/* HERO */

.hero{
    height: clamp(140px, 20vw, 300px);
    position: relative;
    overflow: hidden;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #071325;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,
    rgba(0,0,0,0) 60%,
    rgba(5,11,22,.5) 100%);
}

/* GRID */

.main-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
    padding:30px;
}

.left-content,
.right-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */

.card{
    background:#081120;
    border:1px solid #132949;
    border-radius:20px;
    padding:25px;
    box-shadow:0 0 20px rgba(0,0,0,.4);
}

.card-title{
    color:#0087ff;
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
}

/* SCHEDULE */

.schedule-item{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.time{
    background:#0e213d;
    color:#0087ff;
    min-width:80px;
    height:45px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

/* BUTTON */

.primary-btn{
    width:100%;
    margin-top:20px;
    border:none;
    height:50px;
    border-radius:12px;
    background:linear-gradient(90deg,#009dff,#005dff);
    color:white;
    font-weight:700;
    cursor:pointer;
}

/* NEWS */

.news-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.news-item img{
    width:130px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
}

/* INPUT */

input{
    width:100%;
    height:50px;
    margin-bottom:15px;
    background:#0d1b30;
    border:1px solid #17345f;
    border-radius:12px;
    padding:0 15px;
    color:white;
}

/* WEATHER */

.weather-card{
    text-align:center;
}

.wish-card{
    text-align:center;
    min-height:320px;
}

.wish-card .card-title{
    margin-bottom:16px;
}

.wish-card input{
    height:44px;
    margin-bottom:10px;
}

.wish-card .primary-btn{
    height:44px;
    margin-top:6px;
}

.wish-card textarea{
    width:100%;
    min-height:90px;
    resize:vertical;
    margin-bottom:10px;
    background:#0d1b30;
    border:1px solid #17345f;
    border-radius:12px;
    padding:10px 15px;
    color:white;
    font-family:inherit;
}

.apply-card input,
.apply-card select,
.apply-card textarea{
    width:100%;
    background:#0d1b30;
    border:1px solid #17345f;
    border-radius:12px;
    color:#fff;
    font-family:inherit;
    margin-bottom:10px;
    padding:10px 12px;
}

.apply-card textarea{
    min-height:80px;
    resize:vertical;
}

.apply-card .primary-btn{
    margin-top:8px;
    height:44px;
}

.weather-temp{
    font-size:60px;
    color:#0087ff;
}

/* ONAIR */

.onair-live-row{
    display:flex;
    align-items:center;
    gap:14px;
}

.onair-avatar{
    width:72px;
    height:72px;
    border-radius:10px;
    object-fit:cover;
    border:3px solid #0087ff;
    box-shadow:0 0 20px rgba(0,200,255,.25);
}

.onair-meta h4{
    margin:4px 0;
    font-size:1.1rem;
}

.onair-meta p{
    margin:0;
    color:#8fb3d8;
    font-size:0.92rem;
}

.onair-meta span{
    display:inline-block;
    margin-top:6px;
    color:#0087ff;
    font-weight:700;
    font-size:0.85rem;
}

.onair-label{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:.4px;
    background:#ff1744;
    color:#fff;
    box-shadow:0 0 14px rgba(255,23,68,.35);
}

.onair-empty{
    display:flex;
    align-items:center;
    gap:14px;
    text-align:left;
}

.onair-empty .onair-avatar{
    margin:0;
}

.onair-empty .onair-label{
    background:#2b3e5e;
    box-shadow:none;
}

.onair-empty p{
    margin-top:10px;
    color:#8fb3d8;
}

/* AutoDJ Animation */
.onair-autodj{
    animation: autodj-pulse 1.5s ease-in-out infinite;
}

@keyframes autodj-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,200,255,.25), 0 0 0 0 rgba(0,200,255,0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0,200,255,.25), 0 0 15px 5px rgba(0,200,255,0.1);
    }
}

/* PLAYER */

.player-card{
    text-align:center;
    position:relative;
}

.player-card img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
}

.live-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#009dff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
}

/* SOCIAL MEDIA CARD */

.social-card {
    text-align: center;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 14px;
    background: #0e213d;
    border: 1px solid #17345f;
    color: #8fb3d8;
    text-decoration: none;
    transition: all .3s;
    min-height: 80px;
}

.social-link i {
    font-size: 1.8rem;
    transition: color .3s;
}

.social-link span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c8dff5;
}

.social-link:hover {
    background: #122d47;
    border-color: #009dff;
    color: #009dff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 157, 255, 0.2);
}

.social-link:hover i {
    color: #009dff;
}

.chat-card {
    text-align: center;
}

.chat-link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #17345f;
    background: #0e213d;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.chat-link:hover {
    transform: translateY(-3px);
    border-color: #009dff;
    box-shadow: 0 10px 24px rgba(0, 157, 255, 0.22);
}

.chat-image {
    width: 100%;
    display: block;
}

/* FANSHOP */
.fanshop-link {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #17345f;
    background: #0e213d;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.fanshop-link:hover {
    transform: translateY(-3px);
    border-color: #009dff;
    box-shadow: 0 10px 24px rgba(0,157,255,0.22);
}

.fanshop-image {
    width: 100%;
    display: block;
}

.fanshop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    background: linear-gradient(to top, rgba(0,10,30,0.72) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s;
}

.fanshop-link:hover .fanshop-overlay {
    opacity: 1;
}

.fanshop-overlay span {
    background: #009dff;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 6px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* PARTNER SLIDESHOW */
.partner-card .card-title {
    margin-bottom: 14px;
}

.partner-slideshow {
    position: relative;
    width: 100%;
    min-height: 130px;
    overflow: hidden;
    border-radius: 12px;
    background: #0e213d;
    border: 1px solid #17345f;
}

.partner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.7s ease;
    text-decoration: none;
    pointer-events: none;
}

.partner-slide--active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.partner-slide img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.partner-slide-name {
    font-size: 0.82rem;
    color: #8fb3d8;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
}

.partner-slide:hover .partner-slide-name {
    color: #009dff;
}

.partner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding-bottom: 2px;
}

.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #1e3d60;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.partner-dot--active {
    background: #009dff;
    transform: scale(1.3);
}

.partner-dot:hover {
    background: #4a90d9;
}

.player-controls{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.player-controls button{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#10213a;
    color:#0087ff;
    cursor:pointer;
}

.play-btn{
    background:#009dff !important;
    color:white !important;
}

/* TEAM KARUSSELL */

.team-card-box{
    overflow:hidden;
}

.team-carousel{
    overflow:hidden;
    width:100%;
    position:relative;
}

.team-carousel-track{
    display:flex;
    gap:16px;
    transition:transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change:transform;
}

.team-member-card{
    flex:0 0 calc(33.333% - 11px);
    min-width:0;
    background:rgba(0,157,255,0.07);
    border:1px solid rgba(0,157,255,0.18);
    border-radius:14px;
    padding:22px 14px 18px;
    text-align:center;
    transition:transform .2s, box-shadow .2s;
}

.team-member-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 28px rgba(0,157,255,0.22);
}

.team-member-avatar{
    position:relative;
    display:inline-block;
    margin-bottom:12px;
}

.team-member-avatar img{
    width:80px;
    height:80px;
    border-radius:10px;
    object-fit:cover;
    border:3px solid #009dff;
    display:block;
}

.team-live-dot{
    position:absolute;
    bottom:4px;
    right:4px;
    width:14px;
    height:14px;
    background:#ff4444;
    border-radius:50%;
    border:2px solid #0a1628;
    animation:pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot{
    0%,100%{box-shadow:0 0 0 0 rgba(255,68,68,.6);}
    50%{box-shadow:0 0 0 6px rgba(255,68,68,0);}
}

.team-member-card h4{
    margin:0 0 4px;
    font-size:1rem;
    color:#e8f4ff;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.team-member-card p{
    margin:0 0 8px;
    font-size:0.82rem;
    color:#8fb3d8;
    text-transform:uppercase;
    letter-spacing:.05em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.team-live-badge{
    display:inline-block;
    background:rgba(255,68,68,.15);
    border:1px solid rgba(255,68,68,.4);
    color:#ff6b6b;
    font-size:0.75rem;
    font-weight:700;
    padding:3px 10px;
    border-radius:20px;
    letter-spacing:.04em;
}

/* Karussell Navigation */

.team-carousel-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:18px;
}

.carousel-btn{
    background:rgba(0,157,255,0.12);
    border:1px solid rgba(0,157,255,0.3);
    color:#009dff;
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.85rem;
    transition:background .2s, transform .15s;
    flex-shrink:0;
}

.carousel-btn:hover{
    background:rgba(0,157,255,0.25);
    transform:scale(1.1);
}

.carousel-btn:disabled{
    opacity:.3;
    cursor:default;
    transform:none;
}

.carousel-dots{
    display:flex;
    gap:8px;
    align-items:center;
}

.carousel-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:rgba(0,157,255,0.25);
    border:1px solid rgba(0,157,255,0.4);
    cursor:pointer;
    transition:background .2s, transform .2s;
}

.carousel-dot.active{
    background:#009dff;
    transform:scale(1.3);
}

/* TEAM PROFILE MODAL */

.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.team-modal-content {
    background: linear-gradient(135deg, #0a1628 0%, #0f2342 100%);
    border: 1px solid rgba(0, 157, 255, 0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s cubic-bezier(.4,0,.2,1);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.team-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 157, 255, 0.12);
    border: 1px solid rgba(0, 157, 255, 0.3);
    color: #009dff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    z-index: 10000;
}

.team-modal-close:hover {
    background: rgba(0, 157, 255, 0.25);
    transform: rotate(90deg);
}

/* Details-Button */

.team-details-btn {
    background: rgba(0, 157, 255, 0.18);
    border: 1px solid rgba(0, 157, 255, 0.35);
    color: #009dff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
    transition: background .2s, transform .15s;
    letter-spacing: .04em;
}

.team-details-btn:hover {
    background: rgba(0, 157, 255, 0.35);
    transform: translateY(-2px);
}

/* ── Besucher-Zähler Widget (Frontend) ────────────────────────────── */
.vc-card {
    padding: 20px 22px 14px !important;
    background: linear-gradient(135deg, #07162a, #0c1d36) !important;
    border-color: rgba(0,200,255,.25) !important;
    overflow: hidden;
    position: relative;
}
.vc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(0,200,255,.12) 0%, transparent 60%);
    pointer-events: none;
}
.vc-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}
.vc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,200,255,.12);
    border: 1px solid rgba(0,200,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #00c8ff;
    flex-shrink: 0;
}
.vc-text {
    flex: 1;
    min-width: 0;
}
.vc-label {
    font-size: .75rem;
    color: #4a6a8f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}
.vc-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e8f4ff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.vc-sub {
    font-size: .72rem;
    color: #4a6a8f;
    margin-top: 3px;
}
.vc-bar {
    height: 3px;
    background: rgba(0,200,255,.1);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
    position: relative;
}
.vc-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #00c8ff, #0087ff);
    border-radius: 2px;
    animation: vcPulse 2.5s ease-in-out infinite;
}
@keyframes vcPulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .5; }
}

/* FOOTER */

.footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:120;
    background:rgba(8,17,32,.95);
    border-top:1px solid #17345f;
    padding:10px 24px;
    min-height:56px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(6px);
}

.footer-logo img{
    height:32px;
    opacity:.85;
}

.footer-copy{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.footer-copy-text{
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.06em;
    background:linear-gradient(90deg,#00c8ff,#009dff,#7b61ff,#ff6bcb,#00c8ff);
    background-size:300% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:rgbShift 8s linear infinite;
}

@keyframes rgbShift{
    0%   { background-position:0% center; }
    100% { background-position:300% center; }
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    position:relative;
    display:inline-block;
    color:#79c8ff;
    text-decoration:none;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.02em;
    padding:2px 0;
    transition:color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:2px;
    border-radius:2px;
    background:linear-gradient(90deg,#00c8ff,#009dff,#70bfff);
    transform:scaleX(.25);
    transform-origin:left center;
    opacity:.55;
    transition:transform .28s ease, opacity .28s ease, box-shadow .28s ease;
}

.footer-links a:hover{
    color:#d7efff;
    text-shadow:0 0 12px rgba(0,157,255,.45);
    transform:translateY(-1px);
}

.footer-links a:hover::after{
    transform:scaleX(1);
    opacity:1;
    box-shadow:0 0 12px rgba(0,200,255,.55);
}

/* FOOTER SSL-HINWEIS */

.footer-ssl {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #4fa6db;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: help;
    user-select: none;
    outline: none;
}

.footer-ssl-tooltip {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(520px, 72vw);
    background: rgba(6, 16, 31, 0.98);
    border: 1px solid rgba(0, 157, 255, 0.38);
    border-radius: 12px;
    color: #d8ecff;
    padding: 11px 13px;
    line-height: 1.5;
    font-size: .82rem;
    font-weight: 500;
    box-shadow: 0 14px 34px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 260;
}

.footer-ssl:hover .footer-ssl-tooltip,
.footer-ssl:focus-visible .footer-ssl-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 74px;
    z-index: 210;
    background: linear-gradient(150deg, rgba(6, 17, 34, 0.98), rgba(10, 29, 57, 0.98));
    border: 1px solid rgba(0, 157, 255, 0.38);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__text strong {
    color: #9fdcff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.cookie-banner__text p {
    margin: 4px 0 0;
    color: #c8dff5;
    font-size: 0.87rem;
    line-height: 1.5;
    max-width: 860px;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid rgba(0, 157, 255, 0.36);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--light {
    background: rgba(8, 22, 42, 0.95);
    color: #c8dff5;
}

.cookie-btn--light:hover {
    background: rgba(12, 32, 62, 0.95);
}

.cookie-btn--primary {
    background: linear-gradient(135deg, #009dff, #0068d6);
    border-color: rgba(0, 157, 255, 0.8);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 115, 230, 0.35);
}

.cookie-btn--primary:hover {
    box-shadow: 0 12px 30px rgba(0, 115, 230, 0.5);
}

/* LEGAL PAGES */

.legal-page {
    min-height: 100vh;
}

.legal-main {
    max-width: 1020px;
    margin: 0 auto;
    padding: 34px 20px 120px;
}

.legal-card {
    border: 1px solid #17345f;
    box-shadow: 0 18px 44px rgba(0,0,0,.45);
}

.legal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.legal-card h1 {
    margin: 0;
    font-size: 1.9rem;
    color: #00c8ff;
}

.legal-card h2 {
    margin: 24px 0 10px;
    font-size: 1.05rem;
    color: #9fdcff;
}

.legal-card p,
.legal-card li {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #c8dff5;
}

.legal-card ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.back-link {
    color: #8fb3d8;
    text-decoration: none;
    border: 1px solid #17345f;
    border-radius: 10px;
    padding: 8px 12px;
    background: #0b1729;
    transition: border-color .2s, color .2s, transform .2s;
}

.back-link:hover {
    color: #fff;
    border-color: #009dff;
    transform: translateY(-1px);
}

.legal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 10px 16px;
    margin-top: 12px;
}

.legal-grid .k {
    color: #8fb3d8;
    font-weight: 700;
}

.legal-grid .v {
    color: #e8f4ff;
    word-break: break-word;
}

.legal-note {
    margin-top: 18px;
    font-size: .9rem;
    color: #8fb3d8;
    border-top: 1px solid #17345f;
    padding-top: 14px;
}

.legal-card a.inline {
    color: #78ceff;
    text-decoration: none;
}

.legal-card a.inline:hover {
    color: #bde8ff;
}

@media (max-width: 720px) {
    .legal-main {
        padding: 24px 14px 120px;
    }

    .legal-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* ========================= */
/* BEWERBEN-BUTTON (Navbar)  */
/* ========================= */

.bew-btn {
    background: linear-gradient(135deg, #00c853, #009e42);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .08em;
    padding: 9px 18px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 2px 14px rgba(0,200,80,.35);
    white-space: nowrap;
}

.bew-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,200,80,.55);
}

/* ========================= */
/* PROMO INFO BOX            */
/* ========================= */

.promo-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.64);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10010;
    padding: 20px;
}

.promo-box {
    width: 100%;
    max-width: 430px;
    background: linear-gradient(160deg, #071223 0%, #0d2342 100%);
    border: 1px solid rgba(0, 157, 255, 0.35);
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.5);
    position: relative;
    animation: slideUp 0.24s ease;
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 157, 255, 0.35);
    background: rgba(0, 157, 255, 0.12);
    color: #8fd2ff;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.promo-close:hover {
    background: rgba(0, 157, 255, 0.25);
}

.promo-box h3 {
    margin: 0 0 10px;
    color: #e8f4ff;
    font-size: 1.18rem;
}

.promo-box p {
    margin: 0 0 8px;
    color: #c8dff5;
    line-height: 1.5;
}

.promo-submit-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b4ff, #0068d6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 11px;
    padding: 11px 16px;
    border: 1px solid rgba(0, 157, 255, 0.72);
    transition: transform .15s, box-shadow .2s;
}

.promo-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 120, 230, 0.45);
}

/* ========================= */
/* BEWERBUNGS-MODAL          */
/* ========================= */

.bew-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.bew-modal-content {
    background: linear-gradient(160deg, #07111f 0%, #0d1f3c 60%, #0a1828 100%);
    border: 1px solid rgba(0, 157, 255, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0,157,255,.08);
    animation: slideUp 0.32s cubic-bezier(.4,0,.2,1);
}

.bew-modal-content::-webkit-scrollbar { width: 6px; }
.bew-modal-content::-webkit-scrollbar-track { background: transparent; }
.bew-modal-content::-webkit-scrollbar-thumb { background: rgba(0,157,255,.3); border-radius: 3px; }

.bew-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px 18px;
    border-bottom: 1px solid rgba(0, 157, 255, 0.12);
    background: rgba(0, 157, 255, 0.04);
    border-radius: 20px 20px 0 0;
}

.bew-modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .09em;
    color: #e8f4ff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.bew-modal-title i {
    color: #009dff;
    font-size: 1rem;
}

.bew-modal-close {
    background: rgba(0, 157, 255, 0.1);
    border: 1px solid rgba(0, 157, 255, 0.28);
    color: #009dff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .18s;
    flex-shrink: 0;
    line-height: 1;
}

.bew-modal-close:hover {
    background: rgba(0, 157, 255, 0.28);
    transform: rotate(90deg);
}

.bew-modal-body {
    padding: 22px 26px 28px;
}

.bew-modal-desc {
    color: #7ca8cc;
    font-size: 0.88rem;
    margin: 0 0 20px;
    line-height: 1.6;
}

/* Nachrichten */
.bew-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bew-msg--ok {
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.35);
    color: #65d37a;
}

.bew-msg--err {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.35);
    color: #ff7070;
}

/* Formular-Layout */
.bew-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bew-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.bew-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8fb3d8;
    letter-spacing: .04em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.bew-req { color: #ff7070; }
.bew-optional { color: #4a6580; font-weight: 400; text-transform: none; font-size: 0.75rem; }

.bew-field input,
.bew-field select,
.bew-field textarea {
    background: rgba(13, 27, 48, 0.85);
    border: 1px solid rgba(23, 52, 95, 0.9);
    border-radius: 10px;
    color: #e0eeff;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.bew-field input:focus,
.bew-field select:focus,
.bew-field textarea:focus {
    border-color: rgba(0, 157, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.1);
}

.bew-field textarea {
    min-height: 90px;
    resize: vertical;
}

.bew-field input[type="file"].bew-file-input {
    padding: 8px 12px;
    color: #7ca8cc;
    cursor: pointer;
}

.bew-field select option {
    background: #0d1b30;
}

.bew-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0087ff, #005fc7);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .07em;
    padding: 13px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 6px;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(0, 135, 255, 0.35);
}

.bew-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 135, 255, 0.55);
}

@media (max-width: 560px) {
    .bew-row { grid-template-columns: 1fr; }
    .bew-modal-body { padding: 18px 18px 24px; }
    .bew-modal-header { padding: 18px 18px 14px; }
}

/* RESPONSIVE */

@media(max-width:1100px){

    .cookie-banner{
        left:12px;
        right:12px;
    }

    .main-grid{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

}

@media(max-width:900px){
    .team-member-card{
        flex:0 0 calc(50% - 8px);
    }
}

@media(max-width:600px){
    .cookie-banner{
        bottom:68px;
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-banner__actions{
        width:100%;
    }

    .cookie-btn{
        width:100%;
        text-align:center;
    }

    .footer-ssl{
        font-size:.78rem;
    }

    .footer-ssl-tooltip{
        right:auto;
        left:0;
        width:min(420px, 84vw);
    }

    .team-member-card{
        flex:0 0 100%;
    }
}