/* ==========================================================================
   TEAM ORANGEBONUS — eigenständige Team-Seite (orange/dunkel) · V3 „Showtime"
   ========================================================================== */
:root {
    --ob-orange: #F5901E;
    --ob-orange-h: #ff9f33;
    --ob-bg: #0c0a08;
    --ob-bg2: #110e0b;
    --ob-panel: #171310;
    --ob-line: rgba(255, 255, 255, 0.08);
    --ob-text: #f6f5f3;
    --ob-mut: rgba(255, 255, 255, 0.58);
    --ob-radius: 18px;
    --ob-max: 1140px;
    --ob-ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.ob {
    background-color: var(--ob-bg);
    color: var(--ob-text);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.ob a { color: inherit; text-decoration: none; }
body.ob img { max-width: 100%; display: block; }
body.ob h1, body.ob h2, body.ob h3 { font-family: 'Rajdhani', 'Inter', sans-serif; margin: 0; }

/* Animations */
@keyframes ob-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 90, .6); }
    70% { box-shadow: 0 0 0 9px rgba(255, 90, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0); }
}
@keyframes ob-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes ob-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ob-glow-drift {
    0% { transform: translate3d(-4%, -2%, 0) scale(1); opacity: .8; }
    50% { transform: translate3d(4%, 3%, 0) scale(1.12); opacity: 1; }
    100% { transform: translate3d(-4%, -2%, 0) scale(1); opacity: .8; }
}
@keyframes ob-shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes ob-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ob-rise { animation: ob-rise .7s var(--ob-ease) both; }
.ob-rise--2 { animation-duration: .8s; animation-delay: .08s; }
.ob-rise--3 { animation-duration: .8s; animation-delay: .16s; }
.ob-rise--4 { animation-duration: .8s; animation-delay: .24s; }
.ob-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ob-ease), transform .7s var(--ob-ease); }
.ob-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .ob-rise, .ob-reveal { animation: none; opacity: 1; transform: none; transition: none; }
    .ob-ticker__track, .ob-hero__glow, .ob-hero__title span { animation: none; }
}

/* Buttons */
.ob-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .9rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
    border: 1px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.ob-btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.ob-btn--block { display: flex; width: 100%; }
.ob-btn--orange { background: var(--ob-orange); color: #1a1206; box-shadow: 0 8px 30px rgba(245, 144, 30, .4); }
.ob-btn--orange:hover { background: var(--ob-orange-h); transform: translateY(-2px); box-shadow: 0 12px 38px rgba(245, 144, 30, .5); }
.ob-btn--ghost { background: rgba(255, 255, 255, .05); color: #fff; border-color: rgba(255, 255, 255, .14); }
.ob-btn--ghost:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.ob-btn--live { background: #e02424; color: #fff; box-shadow: 0 8px 30px rgba(224, 36, 36, .45); }
.ob-btn--live:hover { background: #f2352f; transform: translateY(-2px); box-shadow: 0 12px 38px rgba(224, 36, 36, .55); }

/* Live-Signal */
.ob-livedot { width: 9px; height: 9px; border-radius: 50%; background: #fff; flex-shrink: 0; animation: ob-pulse 1.4s infinite; }
.ob-live-pill {
    display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.1rem;
    padding: .5rem 1.15rem; border-radius: 999px; font-weight: 800; letter-spacing: .05em; font-size: .82rem;
    text-transform: uppercase; background: rgba(224, 36, 36, .16); color: #ff7a7a; border: 1px solid rgba(224, 36, 36, .5);
}
.ob-live-pill:hover { color: #ffb0b0; }
.ob-live-pill .ob-livedot { background: #ff5a5a; }

/* Topbar */
.ob-top {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: .7rem clamp(1rem, 4vw, 2.4rem);
    background: rgba(12, 10, 8, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ob-line);
}
.ob-top__brand { display: flex; align-items: center; gap: .55rem; }
.ob-top__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ob-orange); box-shadow: 0 0 12px var(--ob-orange); flex-shrink: 0; }
.ob-top__name { font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: .06em; font-size: 1.05rem; }
.ob-top__name strong { color: var(--ob-orange); }
.ob-top__nav { display: flex; align-items: center; gap: 1.3rem; }
.ob-top__nav > a:not(.ob-btn) { color: var(--ob-mut); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; transition: color .15s; }
.ob-top__nav > a:not(.ob-btn):hover { color: #fff; }
.ob-top__nav i { color: var(--ob-orange); }

/* Hero */
.ob-hero {
    position: relative; overflow: hidden; border-bottom: 1px solid var(--ob-line);
    background-image: linear-gradient(rgba(8, 6, 4, .55), rgba(8, 6, 4, .72)), url('/images/background-team.jpg?v=1');
    background-size: cover; background-position: center 30%;
}
.ob-hero__glow {
    position: absolute; inset: -20%; z-index: 0; pointer-events: none;
    background:
        radial-gradient(45% 55% at 72% 28%, rgba(245, 144, 30, .30), transparent 62%),
        radial-gradient(38% 48% at 12% 88%, rgba(245, 144, 30, .16), transparent 60%);
    animation: ob-glow-drift 9s ease-in-out infinite;
}
.ob-hero__inner {
    position: relative; z-index: 1; max-width: var(--ob-max); margin: 0 auto;
    text-align: center;
    padding: clamp(4rem, 10vw, 7.5rem) clamp(1rem, 4vw, 2.4rem) clamp(3rem, 6vw, 4.4rem);
}
.ob-hero__kicker { display: inline-block; color: var(--ob-orange); font-weight: 800; letter-spacing: .18em; font-size: .8rem; margin-bottom: 1.1rem; text-transform: uppercase; }
.ob-hero__title { font-size: clamp(2.6rem, 8vw, 5.4rem); font-weight: 700; line-height: 1.0; font-style: italic; text-transform: uppercase; letter-spacing: .01em; }
.ob-hero__title span {
    color: var(--ob-orange);
    background: linear-gradient(110deg, #F5901E 30%, #ffd9a0 50%, #F5901E 70%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: ob-shine 3.5s linear infinite;
    filter: drop-shadow(0 0 26px rgba(245, 144, 30, .45));
}
.ob-hero__sub { color: rgba(255, 255, 255, .66); font-size: clamp(1rem, 2vw, 1.12rem); max-width: 44rem; margin: 1.2rem auto 1.8rem; text-wrap: pretty; }
.ob-hero__sub strong { color: #fff; }
.ob-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* Ticker */
.ob-ticker {
    position: relative; z-index: 1; overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(10, 8, 6, .55); backdrop-filter: blur(6px);
    padding: .6rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ob-ticker__track { display: flex; width: max-content; animation: ob-marquee 26s linear infinite; }
.ob-ticker__group {
    display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: .14em; font-size: .82rem;
    text-transform: uppercase; color: rgba(255, 255, 255, .45); white-space: nowrap;
}
.ob-ticker__sep { color: rgba(245, 144, 30, .7); }

/* Body-Wallpaper hinter Sektionen */
.ob-body {
    background-image: linear-gradient(rgba(8, 6, 4, .86), rgba(8, 6, 4, .86)), url('/images/background-team.jpg?v=1');
    background-size: cover; background-position: center; background-attachment: fixed;
}

/* Sections */
.ob-section { max-width: var(--ob-max); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.4rem); }
.ob-section__head { text-align: center; margin-bottom: 2.4rem; }
.ob-section__head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; font-style: italic; text-transform: uppercase; }
.ob-section__rule { width: 56px; height: 4px; background: linear-gradient(90deg, var(--ob-orange), #ffb454); border-radius: 4px; margin: .7rem auto 0; box-shadow: 0 0 14px rgba(245, 144, 30, .6); }
.ob-section__head p { color: var(--ob-mut); margin: .6rem 0 0; }

/* Team cards */
.ob-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.ob-card {
    position: relative; background: var(--ob-panel); border: 1px solid var(--ob-line);
    border-radius: var(--ob-radius); overflow: hidden;
    transition: transform .25s var(--ob-ease), border-color .25s, box-shadow .25s;
}
.ob-card:hover {
    transform: translateY(-8px); border-color: rgba(245, 144, 30, .6);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 144, 30, .25), 0 0 44px rgba(245, 144, 30, .14);
}
.ob-card__photo { position: relative; aspect-ratio: 3 / 4; background: linear-gradient(160deg, #221a12, #14100c); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ob-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ob-ease); }
.ob-card:hover .ob-card__photo img { transform: scale(1.04); }
.ob-card__ph { display: none; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 3.5rem; color: var(--ob-orange); opacity: .5; }
.ob-card__photo.is-empty .ob-card__ph { display: block; }
.ob-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 9, 6, .92) 100%); }
.ob-card__title { position: absolute; left: 1.1rem; right: 1.1rem; bottom: .9rem; display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.ob-card__name { font-size: 1.55rem; font-weight: 700; letter-spacing: .02em; text-shadow: 0 2px 14px rgba(0, 0, 0, .8); }
.ob-card__tag { font-family: 'JetBrains Mono', monospace; font-size: .68rem; font-weight: 500; letter-spacing: .08em; color: var(--ob-orange); text-transform: uppercase; white-space: nowrap; }
.ob-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 1rem; }
.ob-card__bio { color: rgba(255, 255, 255, .62); font-size: .92rem; margin: 0; min-height: 4.2em; text-wrap: pretty; }
.ob-card .ob-btn--ghost { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); padding: .8rem 1.4rem; font-size: .95rem; }
.ob-card .ob-btn--ghost:hover { background: rgba(245, 144, 30, .14); border-color: rgba(245, 144, 30, .55); box-shadow: 0 0 22px rgba(245, 144, 30, .18); transform: none; }

/* Tools */
.ob-tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; }
.ob-tool {
    position: relative; display: flex; flex-direction: column; gap: .55rem;
    background: var(--ob-panel); border: 1px solid var(--ob-line); border-radius: var(--ob-radius);
    padding: 1.6rem; overflow: hidden;
    transition: transform .25s var(--ob-ease), border-color .25s, box-shadow .25s;
}
.ob-tool:hover {
    transform: translateY(-6px); border-color: rgba(245, 144, 30, .65);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .45), 0 0 34px rgba(245, 144, 30, .14);
}
.ob-tool.is-live { border-color: rgba(245, 144, 30, .65); background: linear-gradient(160deg, rgba(245, 144, 30, .14), var(--ob-panel) 55%); }
.ob-tool__emoji { font-size: 2.2rem; line-height: 1; filter: drop-shadow(0 4px 14px rgba(245, 144, 30, .35)); }
.ob-tool__name { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: .55rem; }
.ob-tool__live {
    font-style: normal; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ob-orange); display: inline-flex; align-items: center; gap: .35rem;
    padding: .18rem .55rem; border: 1px solid rgba(245, 144, 30, .5); border-radius: 999px; background: rgba(245, 144, 30, .1);
}
.ob-tool__live i { font-size: .6em; animation: ob-blink 1.6s infinite; }
.ob-tool__desc { color: rgba(255, 255, 255, .6); font-size: .92rem; flex: 1; text-wrap: pretty; }
.ob-tool__cta { color: var(--ob-orange); font-weight: 700; font-size: .92rem; margin-top: .4rem; display: inline-flex; align-items: center; gap: .4rem; }

/* Footer */
.ob-foot { border-top: 1px solid var(--ob-line); background: rgba(17, 14, 11, .9); }
.ob-foot__bar { max-width: var(--ob-max); margin: 0 auto; padding: 1.7rem clamp(1rem, 4vw, 2.4rem) .6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ob-foot__brand { font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: .06em; }
.ob-foot__brand strong { color: var(--ob-orange); }
.ob-foot__links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.ob-foot__links a { color: var(--ob-mut); font-size: .85rem; transition: color .15s; }
.ob-foot__links a:hover { color: #fff; }
.ob-foot__copy { color: var(--ob-mut); font-size: .82rem; }
.ob-foot__age { max-width: var(--ob-max); margin: 0 auto; padding: .2rem clamp(1rem, 4vw, 2.4rem) 1.8rem; color: rgba(255, 255, 255, .45); font-size: .78rem; }

/* Responsive */
@media (max-width: 780px) {
    .ob-top__nav > a:not(.ob-btn) span { display: none; }
}
@media (max-width: 480px) {
    .ob-foot__bar { flex-direction: column; text-align: center; }
}
