.hero-section {
    position: relative;
    height: 80vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.hero-section .overlay {
    display: none;
}

.title-top {
    font-size: 4rem;
    font-weight: 700;
    color: #ff3700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.title-bottom {
    font-size: 1.8rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.status-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.status-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    height: 140px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.status-value {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-top: auto;
}

#time {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.8rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Remove the old time-display class as it's no longer needed */
.status-icon-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.status-icon {
    width: 25px;
    height: 25px;
}

/* Specific adjustment for time icon */
.status-card:last-child .status-icon {
    width: 20px;
    height: 20px;
}

.status-card h2 {
    color: #ff3700;
    font-size: 1.1rem;
    margin: 10;
    text-align: center;
}

.status-value {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    color: #e0e0e0;
    font-size: 1.2rem;
}

.status-onoff {
    height: 100px;
    width: auto;
}

.time-display {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-family: 'Roboto Mono', monospace;
}