/* ADICIONE ISSO NO INÍCIO DO CSS (logo após os imports) */
:root {
    --pokemon-blue: #4a90e2;
    --pokemon-green: #27ae60;
    --pokemon-red: #e74c3c;
    --pokemon-yellow: #f1c40f;
    --pokemon-dark: #2c3e50;
    --pokemon-light: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oxanium', cursive;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: url('images/header-bg.png') no-repeat center center, 
                linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-size: cover;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    height: 100px; /* Altura da sua imagem */
    display: flex;
    align-items: center;
}

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

.logo h1 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pokemon-yellow); /* Destaque amarelo */
}

/* Hero Section with Banner */
.hero-with-banner {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 100px; /* mesma altura do header */
}

.banner-container {
    width: 100%;
    height: 100%;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-overlay {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    width: 90%;
    max-width: 800px;
}

/* Botões no banner */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #337fd7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #6660d2;
}

/* Overlay escuro para melhor legibilidade */
.banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: #ecf0f1;
}

.story h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content ul {
    margin-top: 1rem;
    margin-left: 2rem;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
    background: white;
}

.screenshots h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.screenshot-placeholder {
    background: #bdc3c7;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #7f8c8d;
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: #34495e;
    color: white;
}

.download h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.download-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.download-btn {
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #8940ab;
}

.installation-guide {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.installation-guide ol {
    margin-left: 2rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .download-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Section with Banner */
.hero-with-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-container {
    width: 100%;
    height: 100%;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-overlay {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    width: 90%;
    max-width: 800px;
}

/* Overlay escuro para melhor legibilidade */
.banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-with-banner {
        height: 400px;
    }
    
    .hero-content-overlay {
        top: 80%; /* 👈 Ajuste para mobile também */
    }
}

/* Simple Slideshow */
.simple-slideshow {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.simple-slideshow img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: #2c3e50;
    border-radius: 8px;
    border: 3px solid var(--pokemon-green);
}

/* Discord Button */
.discord-button {
    display: inline-block;
    padding: 12px 25px;
    background: #5865f2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 1rem;
    transition: background 0.3s;
}

.discord-button:hover {
    background: #4752c4;
}

.discord-button i {
    margin-right: 8px;
}

/* Banner 100% Width */
.hero-with-banner {
    position: relative;
    height: 70vh; /* Altura maior */
    overflow: hidden;
}

.banner-container {
    width: 100%;
    height: 100%;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Preenche todo o espaço */
    object-position: center;
}

/* Credits Button */
.credits-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: var(--pokemon-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.credits-btn:hover {
    background: #219653;
}

/* Secondary Download Button */
.download-btn.secondary {
    background: var(--pokemon-blue);
}

.download-btn.secondary:hover {
    background: #357abd;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Header Mobile */
    header {
        height: 70px !important;
        background-size: contain !important;
        background-position: center !important;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .logo {
        display: none; /* Remove texto do logo */
    }
    
    /* Menu Mobile - Hamburger */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--pokemon-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
    }
    
    /* Hamburger Icon */
    .hamburger {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        z-index: 1001;
    }
    
    /* Hero Banner Mobile */
    .hero-with-banner {
        height: 40vh !important;
        margin-top: 70px;
    }
    
    .hero-banner {
        object-fit: cover;
        object-position: top center;
    }
    
    .hero-content-overlay {
        top: 70% !important;
        flex-direction: column;
        gap: 1rem;
        width: 95%;
    }
    
    .cta-button, .discord-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0.5rem 0;
        width: 200px;
        text-align: center;
    }
    
    /* Sections Mobile */
    .story, .features, .screenshots, .download {
        padding: 3rem 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Slideshow Mobile */
    .simple-slideshow {
        max-width: 100% !important;
        margin: 1rem auto !important;
        padding: 0.5rem;
    }
    
    .simple-slideshow img {
        height: 200px !important;
        object-fit: contain;
    }
    
    /* Download Section Mobile */
    .download-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .installation-guide {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Story Content Mobile */
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    /* Footer Mobile */
    footer {
        padding: 1.5rem 0;
    }
    
    footer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .credits-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .hero-with-banner {
        height: 35vh !important;
    }
    
    .hero-content-overlay {
        top: 65% !important;
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    .simple-slideshow img {
        height: 180px !important;
    }
    
    .feature-card, .story-content, .installation-guide {
        padding: 1.5rem;
    }
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* ===== HAMBURGER MENU HTML ===== */
/* Adicione este botão no seu nav (antes do .nav-links) */

/* ===== DARK MODE PERMANENTE ===== */
body {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
}

/* Header já está escuro - manter */

/* Hero Section - ajustar overlay para dark mode */
.banner-container::after {
    background: rgba(0,0,0,0.5) !important; /* Overlay mais escuro */
}

/* Story Section */
.story {
    background: #2d2d2d !important; /* Cinza mais escuro */
    color: #e0e0e0 !important;
}

/* Features Section */
.features {
    background: #252525 !important;
}

.feature-card {
    background: #363636 !important;
    color: #e0e0e0 !important;
    border: 1px solid #404040;
}

.feature-card h3 {
    color: #ffffff !important;
}

/* Screenshots Section */
.screenshots {
    background: #2d2d2d !important;
}

.simple-slideshow {
    background: #363636 !important;
    border: 1px solid #404040;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

.simple-slideshow img {
    background: #2d2d2d !important;
    border: 2px solid var(--pokemon-green) !important;
}

/* Download Section */
.download {
    background: #252525 !important;
    color: #e0e0e0 !important;
}

.installation-guide {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid #404040;
    color: #e0e0e0 !important;
}

.installation-guide h4 {
    color: #ffffff !important;
}

/* Footer */
footer {
    background: #1a1a1a !important;
    border-top: 1px solid #333;
}

/* Links e textos */
a {
    color: #4a90e2 !important;
}

a:hover {
    color: #6ba8ff !important;
}

/* Botões - manter as cores Pokémon mas ajustar contraste */
.cta-button {
    background: var(--pokemon-blue) !important;
    color: white !important;
}

.cta-button:hover {
    background: #357abd !important;
}

.discord-button {
    background: #5865f2 !important;
    color: white !important;
}

.discord-button:hover {
    background: #4752c4 !important;
}

.download-btn {
    background: var(--pokemon-red) !important;
    color: white !important;
}

.download-btn:hover {
    background: #c0392b !important;
}

.download-btn.secondary {
    background: var(--pokemon-green) !important;
}

.download-btn.secondary:hover {
    background: #219653 !important;
}

.credits-btn {
    background: var(--pokemon-green) !important;
    color: white !important;
}

.credits-btn:hover {
    background: #219653 !important;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* Textos secundários */
p, li {
    color: #cccccc !important;
}

/* Placeholders e elementos vazios */
.screenshot-placeholder {
    background: #404040 !important;
    color: #888 !important;
    border: 1px solid #555;
}

/* Menu mobile */
@media (max-width: 768px) {
    .nav-links {
        background: #2d2d2d !important;
        border-top: 1px solid #404040;
    }
    
    .nav-links a {
        color: #e0e0e0 !important;
        border-bottom: 1px solid #404040;
    }
    
    .nav-links a:hover {
        background: #363636;
        color: var(--pokemon-yellow) !important;
    }
}

/* Ajustes de contraste para melhor legibilidade */
.container {
    color: #e0e0e0 !important;
}

.story-content p, 
.download-info p, 
.installation-guide li {
    color: #cccccc !important;
    line-height: 1.6;
}

/* Sombras e profundidade */
.feature-card, 
.simple-slideshow, 
.installation-guide {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

/* ===== LIGHT MODE MELHORADO ===== */
body.light-mode {
    background: #f8f9fa !important;
    color: #2c3e50 !important;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

body.light-mode .story {
    background: #ffffff !important;
    color: #2c3e50 !important;
    border-top: 3px solid var(--pokemon-blue);
    border-bottom: 3px solid var(--pokemon-green);
}

body.light-mode .features {
    background: #f1f3f5 !important;
}

body.light-mode .feature-card {
    background: #ffffff !important;
    color: #2c3e50 !important;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border-left: 4px solid var(--pokemon-blue);
}

body.light-mode .feature-card h3 {
    color: var(--pokemon-dark) !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

body.light-mode .screenshots {
    background: #ffffff !important;
    border-top: 3px solid var(--pokemon-yellow);
}

body.light-mode .simple-slideshow {
    background: #ffffff !important;
    border: 2px solid #dee2e6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
}

body.light-mode .simple-slideshow img {
    background: #f8f9fa !important;
    border: 3px solid var(--pokemon-green) !important;
}

body.light-mode .download {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ffffff !important;
    border-top: 3px solid var(--pokemon-red);
}

body.light-mode .installation-guide {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

body.light-mode footer {
    background: #2c3e50 !important;
    color: #ffffff !important;
    border-top: 3px solid var(--pokemon-blue);
}

/* ===== TIPOGRAFIA MELHORADA ===== */
body.light-mode h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pokemon-dark) !important;
    margin-bottom: 1rem;
}

body.light-mode h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pokemon-dark) !important;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--pokemon-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

body.light-mode h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pokemon-blue) !important;
    margin-bottom: 1rem;
}

body.light-mode h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pokemon-green) !important;
    margin-bottom: 0.8rem;
}

/* Parágrafos com melhor hierarquia */
body.light-mode .story-content p {
    color: #2c3e50 !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

body.light-mode .story-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pokemon-blue) !important;
}

body.light-mode .download-info p {
    color: #e0e0e0 !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Listas */
body.light-mode .installation-guide ol {
    margin-left: 1.5rem;
}

body.light-mode .installation-guide li {
    color: #e0e0e0 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* Container e espaçamento */
body.light-mode .container {
    color: inherit !important;
}

body.light-mode .story-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--pokemon-green);
}

/* ===== TOGGLE BUTTON ===== */
.theme-toggle {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1000;
    background: var(--pokemon-dark);
    border: 2px solid var(--pokemon-yellow);
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.theme-toggle:hover {
    background: var(--pokemon-blue);
    transform: scale(1.05);
}

.theme-toggle i {
    margin-right: 5px;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .theme-toggle {
        top: 75px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* ===== TIPOGRAFIA SIMPLIFICADA - UMA COR ONLY ===== */
.story-content .intro {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-content strong {
    font-weight: 700;
    /* SEM COR DIFERENTE - mesma cor do texto */
}

.story-content .highlight {
    background: rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ccc;
    font-weight: 500;
    margin: 2rem 0;
}

.story-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.story-content li strong {
    font-weight: 700;
}

/* Light Mode Adjustments */
body.light-mode .story-content .highlight {
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid #ddd;
}

/* ===== MAIN SCREENSHOT SECTION ===== */
.screenshot-main {
    padding: 3rem 0;
    background: var(--pokemon-dark);
    text-align: center;
}

.main-screenshot {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--pokemon-yellow);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Light Mode */
body.light-mode .screenshot-main {
    background: #f8f9fa;
}

body.light-mode .main-screenshot {
    border: 3px solid var(--pokemon-blue);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .screenshot-main {
        padding: 2rem 0;
    }
    
    .main-screenshot {
        max-width: 95%;
    }
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 4rem 0;
    background: #2d2d2d;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #363636;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 2px solid #404040;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--pokemon-yellow);
}

.team-member h3 {
    color: var(--pokemon-yellow) !important;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.team-member p {
    color: #cccccc !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Light Mode */
body.light-mode .team-section {
    background: #f8f9fa;
}

body.light-mode .team-section h2 {
    color: var(--pokemon-dark) !important;
}

body.light-mode .team-member {
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

body.light-mode .team-member h3 {
    color: var(--pokemon-blue) !important;
}

body.light-mode .team-member p {
    color: #2c3e50 !important;
}

body.light-mode .team-member:hover {
    border-color: var(--pokemon-blue);
}

/* Mobile */
@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
}

/* ===== MAIN VIDEO SECTION ===== */
.video-main {
    padding: 3rem 0;
    background: var(--pokemon-dark);
    text-align: center;
}

.main-video {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--pokemon-yellow);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Light Mode */
body.light-mode .video-main {
    background: #f8f9fa;
}

body.light-mode .main-video {
    border: 3px solid var(--pokemon-blue);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .video-main {
        padding: 2rem 0;
    }
    
    .main-video {
        max-width: 95%;
    }
}
