/* ============================================
   JACK'S ULTIMATE FAN ZONE - STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Russo One', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff3333;
}

.nav-logo {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff3333;
    text-shadow: 2px 2px 4px rgba(255, 51, 51, 0.5);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff3333;
    background: rgba(255, 51, 51, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff3333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.hero-content {
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #ff3333, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #ff3333);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.5));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #aaa;
    margin-top: 20px;
    letter-spacing: 10px;
}

.hero-icons {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.bounce-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.bounce-icon:nth-child(2) { animation-delay: 0.2s; }
.bounce-icon:nth-child(3) { animation-delay: 0.4s; }
.bounce-icon:nth-child(4) { animation-delay: 0.6s; }

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 3px solid #ff3333;
    border-bottom: 3px solid #ff3333;
    transform: rotate(45deg);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    min-height: 100vh;
    padding: 100px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 3px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.subsection-title {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-align: center;
}

/* ============================================
   EMINEM SECTION
   ============================================ */
.eminem-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d1f1f 50%, #1a1a1a 100%);
}

.eminem-title {
    color: #ff3333;
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
}

.facts-container {
    margin-bottom: 60px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fact-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #ff3333;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.fact-card:hover::before {
    transform: translateX(100%);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.fact-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #ff3333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
}

.fact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery-container {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(255, 51, 51, 0.9));
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ============================================
   YOUTUBE LINKS
   ============================================ */
.youtube-container {
    margin-bottom: 40px;
}

.youtube-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.youtube-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #ff0000;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-card:hover {
    background: #ff0000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.youtube-icon {
    width: 40px;
    height: 40px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.youtube-card:hover .youtube-icon {
    background: #fff;
    color: #ff0000;
}

/* ============================================
   EAGLES SECTION
   ============================================ */
.eagles-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a2e1a 50%, #1a1a1a 100%);
}

.eagles-title {
    color: #00a86b;
    text-shadow: 0 0 30px rgba(0, 168, 107, 0.5);
}

.eagles-card {
    border-color: #00a86b;
}

.eagles-card:hover {
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.eagles-number {
    background: #00a86b;
}

.eagles-overlay {
    background: linear-gradient(transparent, rgba(0, 168, 107, 0.9));
}

.eagles-yt {
    border-color: #00a86b;
}

.eagles-yt:hover {
    background: #00a86b;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
}

.eagles-yt .youtube-icon {
    background: #00a86b;
}

.eagles-yt:hover .youtube-icon {
    color: #00a86b;
}

/* ============================================
   MADDEN SECTION
   ============================================ */
.madden-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #1a1a3a 50%, #1a1a1a 100%);
}

.madden-title {
    color: #4d96ff;
    text-shadow: 0 0 30px rgba(77, 150, 255, 0.5);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: linear-gradient(145deg, #2a2a4a, #1a1a3a);
    border: 2px solid #4d96ff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.3);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.strategy-card h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #4d96ff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.strategy-card p {
    color: #aaa;
    line-height: 1.6;
}

.madden-yt {
    border-color: #4d96ff;
}

.madden-yt:hover {
    background: #4d96ff;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.4);
}

.madden-yt .youtube-icon {
    background: #4d96ff;
}

.madden-yt:hover .youtube-icon {
    color: #4d96ff;
}

/* ============================================
   WOULD YOU RATHER SECTION
   ============================================ */
.wyr-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #3a1a3a 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wyr-title {
    color: #ff6bcb;
    text-shadow: 0 0 30px rgba(255, 107, 203, 0.5);
}

.wyr-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.wyr-score {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ff6bcb;
}

#score {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
}

.wyr-card {
    background: linear-gradient(145deg, #3a2a4a, #2a1a3a);
    border: 3px solid #ff6bcb;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(255, 107, 203, 0.2);
}

.wyr-question {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.wyr-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wyr-option {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 25px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Russo One', sans-serif;
}

.option-a {
    background: linear-gradient(145deg, #ff6b6b, #ee5a5a);
    color: #fff;
}

.option-b {
    background: linear-gradient(145deg, #4d96ff, #3a85ee);
    color: #fff;
}

.wyr-option:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wyr-option:active {
    transform: scale(0.98);
}

.option-label {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    margin-bottom: 10px;
}

.option-text {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.wyr-vs {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #ff6bcb;
    text-shadow: 0 0 20px rgba(255, 107, 203, 0.5);
}

.wyr-controls {
    margin-bottom: 20px;
}

.wyr-btn {
    padding: 15px 50px;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-btn {
    background: linear-gradient(145deg, #6bcb77, #5ab866);
    color: #fff;
}

.next-btn {
    background: linear-gradient(145deg, #ffd93d, #eec82c);
    color: #333;
}

.wyr-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wyr-result {
    font-size: 1.2rem;
    color: #ff6bcb;
    min-height: 30px;
}

.wyr-option.selected {
    animation: pulse 0.5s ease;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wyr-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a0a;
    padding: 40px;
    text-align: center;
    border-top: 2px solid #333;
}

.footer p {
    font-size: 1.2rem;
    color: #666;
}

.footer-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem !important;
    color: #ff3333 !important;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .wyr-options {
        flex-direction: column;
    }

    .wyr-vs {
        margin: 10px 0;
    }

    .wyr-option {
        width: 100%;
        max-width: none;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.fact-card,
.strategy-card,
.gallery-item,
.youtube-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fact-card:nth-child(1), .strategy-card:nth-child(1), .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.fact-card:nth-child(2), .strategy-card:nth-child(2), .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.fact-card:nth-child(3), .strategy-card:nth-child(3), .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.fact-card:nth-child(4), .strategy-card:nth-child(4), .gallery-item:nth-child(4) { animation-delay: 0.4s; }
.fact-card:nth-child(5), .strategy-card:nth-child(5) { animation-delay: 0.5s; }
.fact-card:nth-child(6), .strategy-card:nth-child(6) { animation-delay: 0.6s; }
.fact-card:nth-child(7), .strategy-card:nth-child(7) { animation-delay: 0.7s; }
.fact-card:nth-child(8), .strategy-card:nth-child(8) { animation-delay: 0.8s; }

/* Glowing effect for headers */
.eminem-section .subsection-title { color: #ff3333; text-shadow: 0 0 20px rgba(255, 51, 51, 0.3); }
.eagles-section .subsection-title { color: #00a86b; text-shadow: 0 0 20px rgba(0, 168, 107, 0.3); }
.madden-section .subsection-title { color: #4d96ff; text-shadow: 0 0 20px rgba(77, 150, 255, 0.3); }
.wyr-section .subsection-title { color: #ff6bcb; text-shadow: 0 0 20px rgba(255, 107, 203, 0.3); }

/* ============================================
   LARGE GALLERY GRID
   ============================================ */
.large-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.large-gallery .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 600px) {
    .large-gallery .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ============================================
   GALLERY PLACEHOLDERS
   ============================================ */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.eminem-placeholder {
    background: linear-gradient(145deg, #4a2020, #2a1010);
    border: 2px solid #ff3333;
}

.eagles-placeholder {
    background: linear-gradient(145deg, #0a3a2a, #051a15);
    border: 2px solid #00a86b;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.large-gallery .featured .placeholder-icon {
    font-size: 6rem;
}

.placeholder-text {
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #ccc;
}

.large-gallery .featured .placeholder-text {
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item:hover .eminem-placeholder {
    background: linear-gradient(145deg, #5a2a2a, #3a1a1a);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
}

.gallery-item:hover .eagles-placeholder {
    background: linear-gradient(145deg, #0a4a3a, #052a20);
    box-shadow: 0 0 30px rgba(0, 168, 107, 0.3);
}

/* ============================================
   FACTS CATEGORIES
   ============================================ */
.facts-category {
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    display: inline-block;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
    border-left: 5px solid #ff3333;
}

.eagles-category {
    color: #00a86b !important;
    text-shadow: 0 0 15px rgba(0, 168, 107, 0.3) !important;
    border-left-color: #00a86b !important;
}

.madden-category {
    color: #4d96ff !important;
    text-shadow: 0 0 15px rgba(77, 150, 255, 0.3) !important;
    border-left-color: #4d96ff !important;
}

/* ============================================
   FACTS COUNTER ANIMATION
   ============================================ */
.fact-card {
    counter-increment: fact-counter;
}

/* Smaller fact numbers for 3-digit numbers */
.fact-number {
    font-size: 1rem;
    min-width: 40px;
    width: auto;
    padding: 0 8px;
}

/* ============================================
   SECTION HEIGHT AUTO
   ============================================ */
.section {
    min-height: auto;
    padding: 100px 40px;
}

/* ============================================
   IMPROVED SCROLL ANIMATIONS
   ============================================ */
.fact-card,
.strategy-card,
.gallery-item,
.youtube-card {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Add hover glow to fact cards */
.fact-card:hover {
    transform: translateY(-5px);
}

.eagles-card:hover::before {
    background: linear-gradient(45deg, transparent, rgba(0, 168, 107, 0.1), transparent);
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.3rem;
        padding: 10px 15px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .large-gallery .featured .placeholder-icon {
        font-size: 4rem;
    }

    .placeholder-text {
        font-size: 0.9rem;
    }

    .large-gallery .featured .placeholder-text {
        font-size: 1.1rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .youtube-links {
        flex-direction: column;
        align-items: center;
    }

    .youtube-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   SMOOTH SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff3333, #00a86b, #4d96ff, #ff6bcb);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6666, #00d88a, #6baaff, #ff8ed8);
}

/* ============================================
   VIDEO EMBED SECTION
   ============================================ */
.video-section {
    margin-bottom: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.video-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #ff3333;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.3);
}

.video-item.eagles-video {
    border-color: #00a86b;
}

.video-item.eagles-video:hover {
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    padding: 15px 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.video-item:hover .video-title {
    color: #ff3333;
}

.video-item.eagles-video:hover .video-title {
    color: #00a86b;
}

/* Responsive video grid */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-title {
        font-size: 1rem;
    }
}

/* ============================================
   WOULD YOU RATHER - PERCENTAGE DISPLAY
   ============================================ */
.wyr-percentages {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 107, 203, 0.3);
}

.percentage-bar {
    display: flex;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.5);
}

.percentage-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s ease-out;
    width: 0%;
}

.percentage-a {
    background: linear-gradient(145deg, #ff6b6b, #ee5a5a);
    border-radius: 25px 0 0 25px;
}

.percentage-b {
    background: linear-gradient(145deg, #4d96ff, #3a85ee);
    border-radius: 0 25px 25px 0;
}

.percentage-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
}

.percent-label {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
}

.percent-a-label {
    color: #ff6b6b;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.percent-b-label {
    color: #4d96ff;
    text-shadow: 0 0 15px rgba(77, 150, 255, 0.5);
}

.percentage-message {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ff6bcb;
    text-align: center;
    min-height: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive for percentages */
@media (max-width: 768px) {
    .percent-label {
        font-size: 1.5rem;
    }

    .percentage-bar {
        height: 40px;
    }

    .percentage-message {
        font-size: 1rem;
    }
}
