/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* WordPress Override - Remove Default Theme Elements */
body {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide WordPress default header, footer, and containers */
header.site-header,
.site-header,
#masthead,
.header,
footer.site-footer,
.site-footer,
#colophon,
.footer-default,
#site-navigation,
.navigation,
.breadcrumbs,
#primary,
#content,
.site-content,
.entry-content,
.entry-header,
.post,
.page,
article {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Force full-width container */
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.elementor-widget,
.elementor-element {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove any WordPress spacing */
.site {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

:root {
    /* NFL Team Colors */
    --nfl-blue: #013369;
    --nfl-red: #D50A0A;
    --nfl-white: #ffffff;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --gold: #FFB81C;
    --silver: #A5ACAF;
    
    /* Team Colors */
    --packers-green: #203731;
    --packers-gold: #FFB612;
    --jets-green: #125740;
    --chiefs-red: #E31837;
    --colts-blue: #002C5F;
    --cowboys-blue: #041E42;
    --dolphins-aqua: #008E97;
    --steelers-black: #000000;
    --steelers-gold: #FFB612;
    --raiders-silver: #A5ACAF;
    --49ers-red: #AA0000;
    --49ers-gold: #B3995D;
    --redskins-burgundy: #5A1414;
    --bears-navy: #0B162A;
    --bears-orange: #C83803;
    --giants-blue: #0B2265;
    --giants-red: #A71930;
    --broncos-orange: #FB4F14;
    --broncos-blue: #002244;
    --rams-blue: #003594;
    --rams-gold: #FFA300;
    --ravens-purple: #241773;
    --patriots-navy: #002244;
    --patriots-red: #C60C30;
    --buccaneers-red: #D50A0A;
    --saints-gold: #D3BC8D;
    --seahawks-navy: #002244;
    --seahawks-green: #69BE28;
    --eagles-green: #004C54;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--darker-bg);
    color: var(--nfl-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--nfl-red);
    box-shadow: 0 4px 20px rgba(213, 10, 10, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--nfl-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--nfl-red);
}

.logo i {
    color: var(--nfl-red);
    font-size: 1.8rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(15deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--nfl-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--nfl-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--nfl-red);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--nfl-blue) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(213, 10, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(1, 51, 105, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    letter-spacing: 8px;
}

.title-line.highlight {
    color: var(--nfl-red);
    text-shadow: 0 0 30px rgba(213, 10, 10, 0.8);
    font-size: 7rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(213, 10, 10, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--nfl-red);
    box-shadow: 0 10px 30px rgba(213, 10, 10, 0.4);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--nfl-red);
    font-weight: bold;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--nfl-red);
    color: var(--nfl-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(213, 10, 10, 0.4);
}

.cta-button:hover {
    background: var(--nfl-white);
    color: var(--nfl-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(213, 10, 10, 0.6);
}

.cta-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--nfl-red);
    border-radius: 20px;
    position: relative;
    animation: mouseMove 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--nfl-red);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes mouseMove {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Champions Section */
.champions-section {
    padding: 8rem 2rem;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 8px;
    color: var(--nfl-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--nfl-red);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Timeline */
.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--nfl-red), var(--nfl-blue));
}

/* Champion Cards */
.champion-card {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.champion-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.champion-card:nth-child(odd) {
    padding-right: 55%;
}

.champion-card:nth-child(even) {
    padding-left: 55%;
}

.card-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--nfl-white);
    background: var(--nfl-red);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 5px solid var(--darker-bg);
    box-shadow: 0 0 30px rgba(213, 10, 10, 0.5);
}

.card-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card-content:hover::before {
    left: 100%;
}

.card-content:hover {
    transform: scale(1.02);
    border-color: var(--nfl-red);
    box-shadow: 0 10px 40px rgba(213, 10, 10, 0.3);
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

/* Team Colors */
.team-name[data-team="packers"] { color: var(--packers-gold); }
.team-name[data-team="jets"] { color: var(--jets-green); }
.team-name[data-team="chiefs"] { color: var(--chiefs-red); }
.team-name[data-team="colts"] { color: var(--colts-blue); }
.team-name[data-team="cowboys"] { color: var(--cowboys-blue); }
.team-name[data-team="dolphins"] { color: var(--dolphins-aqua); }
.team-name[data-team="steelers"] { color: var(--steelers-gold); }
.team-name[data-team="raiders"] { color: var(--raiders-silver); }
.team-name[data-team="49ers"] { color: var(--49ers-gold); }
.team-name[data-team="redskins"] { color: var(--redskins-burgundy); }
.team-name[data-team="bears"] { color: var(--bears-orange); }
.team-name[data-team="giants"] { color: var(--giants-blue); }
.team-name[data-team="broncos"] { color: var(--broncos-orange); }
.team-name[data-team="rams"] { color: var(--rams-gold); }
.team-name[data-team="ravens"] { color: var(--ravens-purple); }
.team-name[data-team="patriots"] { color: var(--patriots-red); }
.team-name[data-team="buccaneers"] { color: var(--buccaneers-red); }
.team-name[data-team="saints"] { color: var(--saints-gold); }
.team-name[data-team="seahawks"] { color: var(--seahawks-green); }
.team-name[data-team="eagles"] { color: var(--eagles-green); }

.game-score {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.winner {
    font-weight: bold;
    color: var(--nfl-white);
}

.vs {
    color: var(--nfl-red);
    font-weight: bold;
}

.loser {
    color: rgba(255, 255, 255, 0.5);
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.game-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-info i {
    color: var(--nfl-red);
    width: 20px;
}

.special-badge {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--nfl-red), var(--gold));
    color: var(--nfl-white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-decoration {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nfl-red), transparent);
    border-radius: 0 20px 0 0;
    opacity: 0.3;
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-bg), var(--nfl-blue));
    margin-top: 4rem;
}

.stats-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--nfl-red);
    box-shadow: 0 15px 40px rgba(213, 10, 10, 0.4);
}

.stat-icon {
    font-size: 3rem;
    color: var(--nfl-red);
    margin-bottom: 1rem;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--nfl-white);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-teams {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 2rem;
    border-top: 2px solid var(--nfl-red);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--nfl-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--nfl-red);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--nfl-white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--nfl-red);
    transform: translateY(-5px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .title-line.highlight {
        font-size: 5.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .champion-card:nth-child(odd),
    .champion-card:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
    }
    
    .card-year {
        left: 30px;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line.highlight {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .team-name {
        font-size: 1.8rem;
    }
    
    .game-score {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .card-year {
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line.highlight {
        font-size: 3rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .champion-card:nth-child(odd),
    .champion-card:nth-child(even) {
        padding-left: 60px;
    }
}