body {
    background-image: url("media/heitor5.gif");
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1600px;
}

video, img.hero {
    display: block;
    width: 700px;
    max-width: 95%;
    height: auto;
    flex-shrink: 0;
}

h1 {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #E0FBFC;
    margin: 0;
    text-align: center;
    font-size: 2rem;
}

h2 {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    color: #E0FBFC;
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
}

.box {
    background-color: #000027;
    padding: 1.5rem;
    margin: 0 auto 20px;
    max-width: 1200px;
    width: 100%;
}

.data-section {
    padding: 2rem;
    max-width: 500px;
    flex-shrink: 0;
}

.plain-text {
    color: #E0FBFC;
    font-family: "Special Elite", system-ui;
    white-space: pre-wrap;
    font-size: 1rem;
    background: transparent;
    border: none;
    padding: 0;
}

#data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.metric-card {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    font-family: "Special Elite", system-ui;
    font-size: 0.95rem;
    color: #E0FBFC;
    text-transform: uppercase;
}

.metric-value {
    font-family: "Special Elite", system-ui;
    font-size: 1.8rem;
    color: #ff3c3c;
    font-weight: 700;
}

.last-update {
    font-family: "Special Elite", system-ui;
    text-align: center;
    color: #E0FBFC;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .content-wrapper {
        gap: 20px;
    }
    
    video {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .data-section {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .box {
        margin: 0 auto 20px;
    }
}

@media (max-width: 640px) {
    body {
        padding: 10px;
    }
    
    .content-wrapper {
        gap: 15px;
        width: 100%;
    }
    
    video {
        max-width: 100%;
        width: 100% !important;
        height: auto;
    }
    
    .data-section {
        padding: 1.25rem;
        max-width: 100%;
        width: 100%;
    }
    
    h1 {
        font-size: 1.4rem;
        margin: 0 0 0.5rem 0;
    }
    
    h2 {
        font-size: 1.1rem;
        margin: 0 0 1rem 0;
    }
    
    .metric-card {
        padding: 0.9rem 0.75rem;
        gap: 0.3rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
    
    .last-update {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
    }
    
    .content-wrapper {
        gap: 12px;
    }
    
    video {
        max-width: 100%;
        width: 100% !important;
    }
    
    .data-section {
        padding: 1rem;
        width: 100%;
    }
    
    .box {
        margin: 15px auto;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .metric-card {
        padding: 0.75rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.about-link {
    color: #E0FBFC;
    text-decoration: none;
}

.about-link:visited {
    color: #E0FBFC;
}

.about-link:hover {
    text-decoration: underline;
}