/* RESET ESPECÍFICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #1a1a1a; /* Fondo muy oscuro para resaltar el video */
    color: #d4e79e; /* Tu color crema */
    overflow-x: hidden;
}

.video-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER EXCLUSIVO */
.video-header {
    background-color: #264653; /* Tu azul oscuro */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #561d25;
}

.video-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.back-link {
    color: #d4e79e;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ffffff;
}

/* CONTENIDO PRINCIPAL */
.video-content {
    flex: 1;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.video-frame {
    background: #000;
    border: 8px solid #561d25; /* Tu granate */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    line-height: 0;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

/* DESCRIPCIÓN */
.video-description {
    margin-top: 30px;
    text-align: center;
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
}

.video-description h2 {
    color: #d4e79e;
    margin-bottom: 15px;
    font-size: 2rem;
}

.video-description p {
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cccccc;
}

.tech-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tech-tags span {
    background: #561d25;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4e79e;
}

/* FOOTER */
.video-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .video-header h1 { font-size: 1.1rem; }
    .video-description h2 { font-size: 1.5rem; }
}