/* Estilos minimalistas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
/* Fuente moderna y minimalista */

:root {
    --primary-color: #72929e;
    --secondary-color: #C6EFFE;
    --4color: #b3ff7d;
    --5color: #FFE97A;
    --text-color: #13141d;
}
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--primary-color);
    margin: 0;
    color: var(--text-color);
}
h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 800;
    padding: 15px;
    border: solid 2px var(--text-color);
    background: var(--4color);
    border-radius: 20px;
}
.container{
    position: relative;
    background: var(--secondary-color);
    height: auto;
    margin: 5%;
    margin-bottom: 0%;
    padding: 20px;
    display: flex;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    box-shadow: 10px 10px 0px black;
}
#video {
    background: #333333;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}
#result {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    background-color: var(--5color);
    max-width: 90%;
    word-wrap: break-word;
    box-shadow: 10px 10px 0px black;
    font-weight: 800;
}
.camara {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
}
.cristal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    border-radius: 50%;
    border: 2px solid #333;
}
.cristal::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

/* Media queries solo para el resultado */
@media screen and (max-width: 480px) {
    #result {
        font-size: 1rem;
        padding: 15px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: var(--5color);
        border-top: 2px solid var(--text-color);
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    #result {
        font-size: 1.1rem;
        padding: 12px 20px;
        max-width: 95%;
        box-shadow: 5px 5px 0px black;
    }
}
