body {
    font-family: sans-serif;
    background: #ede9e9;
    margin: 0;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.hidden {
    display: none;
}

button {
    padding: 20px;
    border: none;
    background: #a92828;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
}

button:hover {
    background: #6679f6;
}


/* Header Container */

.main-header {
    width: 100%;
    height: 80px;
    background-image: url("../images/bg3.png");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}


/* Overlay to make text pop against the image */

.header-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0px;
}

.brand-left .domain-name {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}


/* Stats Bar below the image */

.stats-bar {
    background: #d4cbcb;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.counters span {
    margin-left: 20px;
}


/* Footer */

footer {
    background-color: #a92828;
    color: white;
    text-align: center;
    padding: 1.2 rem;
    margin-top: auto;
}


/* Responsive adjustments */

@media (max-width: 600px) {
    .header-overlay {
        flex-direction: column;
        justify-content: center;
        padding: 6px;
        align-items: normal;
        /* text-align: center; */
    }
    .header-overlay span {
        font-size: 1.5rem;
        text-align: right;
    }
}