/* Estilos adicionales para la landing page */

/* Estilos para la sección de showcase del héroe */
.hero-showcase {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.hero-image-container {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.hero-image-frame {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 5px;
    background: rgba(0, 10, 20, 0.7);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.5);
    overflow: hidden;
}

.frame-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--accent-color);
    z-index: 2;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.scan-line-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 162, 255, 0.05) 50%
    );
    background-size: 100% 4px;
    z-index: 3;
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.hero-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.hero-caption {
    text-align: center;
    margin-top: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

/* Estilos para la sección de características */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(0, 20, 40, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.7);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
}

/* Estilos para la sección de componentes */
.components-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.component-preview-item {
    width: 250px;
    text-align: center;
}

.component-preview-image {
    width: 100%;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    background: rgba(0, 10, 20, 0.7);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.3);
    transition: all 0.3s ease;
}

.component-preview-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 162, 255, 0.5);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.component-preview-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.component-preview-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Estilos para la sección de modos de juego */
.game-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-mode-item {
    background: rgba(0, 20, 40, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.game-mode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.game-mode-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.game-mode-item p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.game-mode-item strong {
    color: var(--primary-light);
}

/* Estilos para los contenedores de llamada a la acción */
.cta-container {
    text-align: center;
    margin: 30px 0;
}

.mission-description {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive para la landing page */
@media (max-width: 768px) {
    .components-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-grid, .game-modes {
        grid-template-columns: 1fr;
    }
}
