/* ════════════════════════════════════════════════════════════════
   INDEX TACTICAL STYLES (Extracted from index.html)
════════════════════════════════════════════════════════════════ */

:root {
    --iowa-gold: #FFCD00;
    --iowa-black: #08080a;
    --panel-bg: #121214;
    --sb-gold: #FFCD00;
    --sb-dark: #0d0d10;
}

body {
    background-color: #000;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════════
   MAIN CONTENT OVERRIDES
════════════════════════════════════════════════════════════════ */
.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    .page-wrapper {
        padding: 2rem;
    }
}

/* Section Headers Centered */
.tactical-section-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
}

.tactical-section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--iowa-gold);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .tactical-section-header {
        margin-bottom: 4rem;
    }
}

.tactical-section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 10vw, 4rem);
    line-height: 0.8;
    text-transform: uppercase;
    margin: 0;
}

.tactical-section-header h2 span {
    color: var(--iowa-gold);
}

.section-id {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--iowa-gold);
    opacity: 0.5;
}

/* Scoreboard Section Integration */
.scoreboard-container {
    background: #0d0d10;
    border: 1px solid rgba(255,205,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4rem;
}

/* Grid Adjustments */
.tactical-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .tactical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .tactical-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 5rem;
    }
}

/* Pullout Quote Premium (Improv Style) */
.pullout-quote {
    background: var(--iowa-gold);
    color: #000;
    padding: 3rem 1.5rem;
    text-align: left; /* Align left for the new style */
    position: relative;
    overflow: hidden;
    margin: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 24px) 100%, 0 100%);
}

@media (min-width: 768px) {
    .pullout-quote {
        padding: 4rem 6rem;
    }
}

.pullout-quote::before {
    content: '❝';
    position: absolute;
    right: 1rem; 
    top: -1.5rem;
    font-size: 12rem;
    opacity: 0.08;
    line-height: 1;
    font-family: serif;
    z-index: 0;
}

.pullout-quote blockquote {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    margin: 0;
    max-width: 1000px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
}

.pullout-quote cite {
    display: block;
    margin-top: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 700;
    opacity: 0.7;
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════════════════════════════════
   3D FLIP TEAM CARDS INTEGRATION — styles live in css/teamflip2.css
════════════════════════════════════════════════════════════════════ */
