html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.homepage-background {
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.7);
}

.navbar, .footer {
    background-color: rgba(0, 0, 0, 0.7);
}

.ingame-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.ingame-header-left,
.ingame-header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ingame-header-center {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ingame-icon-btn {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
}

.ingame-icon-btn:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.ingame-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.ingame-stat-icon {
    font-size: 1.25rem;
}

.ingame-stat-value {
    min-width: 2rem;
    text-align: left;
}

.ingame-content {
    flex: 1 0 auto;
}

@media (max-width: 768px) {
    .ingame-header {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }
    
    .ingame-header-center {
        gap: 1rem;
    }
    
    .ingame-stat {
        font-size: 0.875rem;
    }
    
    .ingame-stat-icon {
        font-size: 1rem;
    }
    
    .ingame-icon-btn {
        font-size: 1.25rem;
    }
}
