@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #101010;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #f4f4f4;
    min-height: 100vh;
    letter-spacing: 0.01em;
}

.header.hero {
    background: #111;
    border-bottom: 1px solid #1a1a1a;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-content-xbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 700px;
    gap: 1.8rem;
    margin: 0 auto;
}

.logo-hero-xbox {
    width: 180px;
    max-width: 90vw;
    margin-bottom: 0.5rem;
}

.hero-title-xbox {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e5ffe5;
    letter-spacing: 1.5px;
    margin: 0.2em 0 0.1em 0;
}

.hero-desc-xbox {
    color: #b7dfb7;
    font-size: 1.25rem;
    margin-bottom: 0.4em;
}

.hero-desc-xbox span {
    color: #107c10;
    font-weight: 600;
}

.cta-xbox {
    display: inline-block;
    background: #107c10;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.9em 2.2em;
    border-radius: 32px;
    border: none;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 16px #107c1040;
}
.cta-xbox:hover, .cta-xbox:focus {
    background: #0ea70e;
    color: #fff;
    box-shadow: 0 4px 24px #107c1080;
}

/* Dropdown de descarga */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.download-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
    backdrop-filter: blur(10px);
}

.download-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    text-decoration: none;
    color: #f4f4f4;
    padding: 16px 20px;
    transition: background 0.15s ease;
    border-bottom: 1px solid #333;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #2a2a2a;
    color: #fff;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #107c10;
    border-radius: 8px;
    flex-shrink: 0;
    color: #fff;
}

.option-icon svg {
    width: 20px;
    height: 20px;
}

.option-content {
    flex: 1;
}

.option-title {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.option-desc {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 400;
}

/* Animación de entrada para las opciones */
.dropdown-item {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.download-dropdown.active .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.download-dropdown.active .dropdown-item:nth-child(1) {
    transition-delay: 0.05s;
}

.download-dropdown.active .dropdown-item:nth-child(2) {
    transition-delay: 0.1s;
}

.beta-alert-xbox {
    color: #ffe082;
    background: #222;
    border-radius: 8px;
    padding: 0.7em 1em;
    font-size: 1rem;
    margin-top: 0.7em;
    margin-bottom: 0.2em;
    border: 1px solid #333;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding: 6px 10px;
    background: #1a2e1a;
    border-radius: 6px;
    border: 1px solid #2d5a2d;
}

.security-icon {
    color: #4caf50;
    flex-shrink: 0;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 25%, #107c10 0%, #0e1a0e 60%, #000 100%);
    opacity: 0.92;
    z-index: 1;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(2px) brightness(1.07); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 3.5rem 1rem 2.5rem 1rem;
}

.logo-hero {
    width: 180px;
    max-width: 80vw;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 36px #107c10cc);
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    color: #d0ffd0;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 24px #107c10cc, 0 1px 0 #0009;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 12px #000a;
    line-height: 1.4;
}

.hero-small {
    color: #107c10;
    font-size: 1.12em;
    font-weight: 600;
    letter-spacing: 1px;
}


.logo {
    width: 100px;
    margin-bottom: 1rem;
}

.title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #107c10;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px #000a;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px #000a;
}

.beta-badge {
    background: #107c10;
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px #000a;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 2px 10px #107c10; }
    100% { box-shadow: 0 2px 30px #107c10; }
}

.main-content-xbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 3rem 1rem;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.media-xbox {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    width: 100%;
}
.media-block-xbox {
    flex: 1 1 340px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-xbox {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    border: none;
    box-shadow: 0 2px 20px #000a;
    background: #000;
    min-height: 220px;
}
.img-xbox {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 18px #000a;
    border: 2px solid #222;
    background: #111;
}

.screenshot {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 2px 18px #000a;
    border: 2px solid #fff3;
}

.platforms {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #d0ffd0;
    background: #1a2e1aee;
    padding: 1.2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px #0006;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.features-xbox {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #151a15;
    border-radius: 18px;
    box-shadow: 0 2px 24px #0008;
    padding: 2.5rem 2rem 2rem 2rem;
}
.features-title-xbox {
    color: #107c10;
    font-size: 2rem;
    margin-bottom: 2.2rem;
    font-weight: 800;
    text-align: center;
}
.features-list-xbox {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    width: 100%;
    justify-content: center;
}
.feature-xbox {
    background: #181f18;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0005;
    padding: 1.5rem 1.2rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    margin: 0.2em 0;
}
.feature-xbox h3 {
    color: #e5ffe5;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7em;
}
.feature-xbox p {
    color: #b7dfb7;
    font-size: 1rem;
    margin: 0;
}

.beta-warning-xbox {
    margin: 2.5rem auto 2.5rem auto;
    max-width: 700px;
    background: #191919;
    color: #ffe082;
    border: 1.5px solid #333;
    border-radius: 14px;
    padding: 1.1rem 1.5rem 1rem 1.5rem;
    font-size: 1.11rem;
    font-weight: 500;
    box-shadow: 0 2px 12px #0007;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.6;
    position: relative;
}



.platforms strong {
    color: #fff;
    font-size: 1.15em;
}

@media (max-width: 700px) {
    .main-content, .header { padding: 1.2rem 0.5rem; }
    .title { font-size: 2rem; }
    .video-container { max-width: 100vw; }
    .screenshot { max-width: 100vw; }
    .platforms { font-size: 1rem; padding: 1rem; }
    
    /* Responsive para el dropdown */
    .dropdown-menu {
        min-width: 260px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .download-option {
        gap: 10px;
    }
    
    .option-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .option-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .option-title {
        font-size: 0.95rem;
    }
    
    .option-desc {
        font-size: 0.8rem;
    }
    
    .security-badge {
        font-size: 0.85rem;
        padding: 5px 8px;
    }
    
    .security-icon {
        width: 14px;
        height: 14px;
    }
}
