/* Enable scrolling for the about page only */
body {
    overflow-y: auto !important;
    height: auto !important;
    background-attachment: fixed; /* Hides the seams between dirt tiles during scroll */
}

/* Custom Scrollbar matching your site's orange/brown theme */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: #c77a2a; /* Your exact button color */
    border-radius: 10px;
    border: 3px solid #2a1e14;
}

/* Fixes the layout to stretch and center on the page */
.about-layout {
    display: block !important;
    max-width: 1100px;
    margin: 0 auto;
    height: auto !important;
}

.full-width {
    width: 100% !important;
    flex: none !important;
    margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
    .topbar {
        height: auto;
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }
    .title h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-layout {
        padding: 10px;
    }
}

.ad-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(46, 46, 46, 0.4); /* Matches your panel glass look */
    border: 3px dashed rgba(255, 255, 255, 0.1); 
    padding: 15px !important;
    margin-top: 25px; /* Pushes it away from the content */
}

.ad-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #ffd49e; /* Same soft gold color your chat names use */
    margin-bottom: 12px;
    font-weight: 700;
}

.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 120px; /* Buffer while scripts load */
}
