:root {
    --bsv-blue: #1a56a6;
    --bsv-blue-dark: #123e78;
    --bsv-yellow: #fecb00;
    --bsv-yellow-light: #ffd733;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.bg-bsv-blue { background-color: var(--bsv-blue); }
.bg-bsv-blue-dark { background-color: var(--bsv-blue-dark); }
.bg-bsv-yellow { background-color: var(--bsv-yellow); }
.text-bsv-blue { color: var(--bsv-blue); }
.text-bsv-yellow { color: var(--bsv-yellow); }
.border-bsv-blue { border-color: var(--bsv-blue); }
.border-bsv-yellow { border-color: var(--bsv-yellow); }

.termine-card-blue { border-left-color: var(--bsv-blue); }
.termine-card-yellow { border-left-color: var(--bsv-yellow); }
.termine-card-emerald { border-left-color: #10b981; }

.termine-category-blue { color: var(--bsv-blue); }
.termine-category-yellow { color: var(--bsv-yellow); }
.termine-category-emerald { color: #10b981; }

.termine-icon-blue { color: rgba(26, 86, 166, 0.4); }
.termine-icon-yellow { color: rgba(254, 203, 0, 0.4); }
.termine-icon-emerald { color: rgba(16, 185, 129, 0.4); }

.brush-stroke {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.brush-stroke::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -10px;
    right: -10px;
    height: 12px;
    background-color: var(--bsv-yellow); /* bsv-yellow */
    z-index: -1;
    transform: rotate(-1.5deg);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
}

.hand-drawn-rays {
    position: relative;
}
.hand-drawn-rays::before, .hand-drawn-rays::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    width: 3px;
    height: 12px;
    border-radius: 2px;
    opacity: 0.8;
}
.hand-drawn-rays::before {
    top: -10px;
    left: -5px;
    transform: rotate(-30deg);
}
.hand-drawn-rays::after {
    top: -12px;
    left: 5px;
    transform: rotate(10deg);
    height: 15px;
}

.gritty-bg {
    position: relative;
}
.gritty-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.flyer-card {
    background-color: var(--bsv-blue-dark); /* bsv-blue-dark */
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.flyer-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(251, 191, 36, 0.1) 50%);
    pointer-events: none;
}

.brush-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='60' viewBox='0 0 200 60'%3E%3Cpath d='M10,30 Q50,10 90,30 T190,30' fill='none' stroke='%23fbbf24' stroke-width='15' stroke-linecap='round' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

.section-brush {
    position: relative;
}
.section-brush::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background: var(--bsv-yellow);
    opacity: 0.2;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

.brush-white {
    position: absolute;
    background-color: white;
    opacity: 0.15;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    pointer-events: none;
}
.brush-yellow-wide {
    position: absolute;
    inset: 0;
    background-color: var(--bsv-yellow); /* bsv-yellow */
    z-index: -1;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    pointer-events: none;
}

.flyer-banner-black {
    position: relative;
    background-color: var(--bsv-blue-dark); /* bsv-blue-dark */
    color: white;
    z-index: 1;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8'%3E%3Cpath d='M283.5,9.7c-32.5,1.7-64.6,2.4-96.6,4.7c-32,2.3-64,4.7-95.5,9.9c-31.5,5.2-62.1,5.8-91.4,3.5 c-32.5-2.6-64.6-2.4-96.6-4.7C-32,20.8-64,18.4-95.5,13.2c-31.5-5.2-62.1-5.8-91.4-3.5'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
}
.flyer-banner-black::before, .flyer-banner-black::after {
    display: none;
}

.flyer-banner-yellow {
    position: relative;
    background-color: var(--bsv-yellow); /* bsv-yellow */
    color: var(--bsv-blue-dark); /* bsv-blue-dark */
    z-index: 1;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M45,15 L70,12 L120,18 L180,10 L250,15 L320,12 L380,18 L430,10 L455,15 L470,12 L485,15 L495,12 L500,25 L490,30 L498,38 L485,45 L495,55 L480,65 L492,75 L475,85 L485,90 L460,88 L420,95 L360,88 L300,92 L240,85 L180,95 L120,88 L70,92 L40,85 L25,88 L10,92 L0,80 L8,75 L2,65 L12,55 L5,45 L15,35 L8,25 L18,15 Z'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M45,15 L70,12 L120,18 L180,10 L250,15 L320,12 L380,18 L430,10 L455,15 L470,12 L485,15 L495,12 L500,25 L490,30 L498,38 L485,45 L495,55 L480,65 L492,75 L475,85 L485,90 L460,88 L420,95 L360,88 L300,92 L240,85 L180,95 L120,88 L70,92 L40,85 L25,88 L10,92 L0,80 L8,75 L2,65 L12,55 L5,45 L15,35 L8,25 L18,15 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
}

.professional-card {
    position: relative;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.professional-card:hover {
    border-color: var(--bsv-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.glass-detail {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.team-detail-shell {
    padding: 28px 24px 24px;
    color: #475569;
    margin-top: 12px;
}

.team-detail-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .team-detail-row {
        display: grid;
        grid-template-columns: 40% 60%;
        align-items: start;
    }

    .team-detail-row-no-results {
        grid-template-columns: 40% 60%;
    }

    .team-detail-row-no-image {
        display: block;
    }
}

.team-detail-right-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-detail-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 20px;
    align-items: start;
}

.team-detail-copy {
    min-width: 0;
}

.full-width-copy {
    width: 100%;
}

.team-detail-side {
    width: 100%;
    min-width: 0;
}

.team-detail-footer {
    width: 100%;
}

.team-detail-image-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.team-detail-image-btn {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-detail-image-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.team-detail-right-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-detail-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 20px;
    align-items: start;
}

.team-detail-copy {
    min-width: 0;
}

.full-width-copy {
    width: 100%;
}

.team-detail-side {
    width: 100%;
    min-width: 0;
}

.team-detail-header {
    margin: 0 0 12px;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0f172a;
}

.team-detail-text {
    margin: 0;
    line-height: 1.7;
    color: #475569;
    font-size: 1rem;
}

.team-result-list,
.team-player-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-result-list {
    display: grid;
    gap: 12px;
}

.team-result-item {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.team-result-label {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748b;
}

.team-result-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
}

.team-player-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.team-player-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.team-player-name {
    font-weight: 700;
    color: #0f172a;
}

.team-player-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.8125rem;
}

.team-player-avatar-btn {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
}

.team-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    flex-shrink: 0;
    display: block;
}

.team-player-number {
    display: inline-flex;
    min-width: 30px;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 9999px;
    background: #f1f5f9;
    font-weight: 900;
    color: #334155;
}

.team-player-position {
    text-align: right;
}

.team-detail-footer {
    margin-top: 0;
    width: 100%;
}