/* ============================================
   BANTER STAND HEADER
   ============================================ */
.app-container {
    width: 100%;
    min-height: 100vh;
}

.banter-header {
    background: #1A1A1A;
    border: 5px solid var(--border-black);
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
    padding: 30px 20px 20px;
}

/* Colorful stripes */
.banter-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        var(--cricket-red) 0px,
        var(--cricket-red) 20px,
        var(--gold) 20px,
        var(--gold) 40px,
        var(--turf-green) 40px,
        var(--turf-green) 60px
    );
}

.banter-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        var(--cricket-red) 0px,
        var(--cricket-red) 20px,
        var(--gold) 20px,
        var(--gold) 40px,
        var(--turf-green) 40px,
        var(--turf-green) 60px
    );
}

/* Title Section */
.header-title-section {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.don-ball-logo {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.5));
}

.header-text {
    text-align: left;
}

.main-title {
    font-family: var(--font-header);
    font-size: 3.5rem;
    color: var(--gold);
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    text-shadow:
        3px 3px 0px var(--cricket-red),
        6px 6px 0px rgba(0, 0, 0, 0.4);
    margin-bottom: 2px;
    letter-spacing: 4px;
    line-height: 1;
}

.main-title::after {
    display: none;
}

.subtitle {
    font-family: var(--font-header);
    font-size: 1.15rem;
    color: var(--card-white);
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Fan Zone - Horizontal Scroll */
.fan-zone {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.fan-zone-scroll {
    display: flex;
    justify-content: center;
    gap: 25px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 15px 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.fan-zone-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Individual Banter Fan */
.banter-fan {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: bobBanter 3s ease-in-out infinite;
}

.banter-fan:nth-child(odd) {
    animation-delay: 0s;
}

.banter-fan:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes bobBanter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.banter-fan:hover {
    transform: scale(1.1) translateY(-8px);
    z-index: 10;
}

/* Protest Sign */
.banter-fan .fan-sign {
    background: var(--card-white);
    border: 3px solid var(--border-black);
    border-radius: 8px;
    padding: 15px 12px;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 2;
    font-family: 'Permanent Marker', 'Comic Sans MS', cursive;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: -15px;
}

.banter-fan .fan-sign span {
    display: block;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* Wooden stick */
.banter-fan .fan-sign::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 25px;
    background: #8B4513;
    border: 2px solid var(--border-black);
    border-top: none;
    z-index: 1;
}

/* Avatar - Overlaps sign */
.banter-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid var(--border-black);
    background: var(--card-white);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banter-header {
        border-radius: 0;
        margin: 0 -10px 20px;
        padding: 25px 15px 15px;
    }

    .don-ball-logo {
        width: 70px;
        height: 70px;
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .fan-zone-scroll {
        gap: 20px;
        padding: 15px 10px 25px;
    }

    .banter-fan .fan-sign {
        min-width: 130px;
        font-size: 0.85rem;
        padding: 12px 10px;
    }

    .banter-avatar {
        width: 65px;
        height: 65px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .banter-header {
        padding: 20px 12px 12px;
    }

    .header-logo {
        gap: 14px;
    }

    .don-ball-logo {
        width: 60px;
        height: 60px;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .fan-zone-scroll {
        gap: 18px;
        padding: 12px 8px 20px;
    }

    .banter-fan .fan-sign {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 10px 8px;
    }

    .banter-avatar {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
}
