.xp-brand-section {
    background-color: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    font-family: inherit;
}
.xp-brand-section .xp-label {
    color: #00e5c8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}
.xp-brand-section .xp-heading {
    color: #ffffff;
    font-size: 42px;
    margin: 0 0 15px;
}
.xp-brand-section .xp-desc {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 40px;
}
.xp-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.xp-filter-btn {
    background-color: #1a1a1a;
    color: #b0b0b0;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}
.xp-filter-btn.active, .xp-filter-btn:hover {
    background-color: #00e5c8;
    color: #000000;
    border-color: #00e5c8;
}

.xp-masonry-grid {
    column-count: 4;
    column-gap: 20px;
    text-align: left;
}
@media (max-width: 1023px) {
    .xp-masonry-grid { column-count: 2; }
}
@media (max-width: 599px) {
    .xp-masonry-grid { column-count: 1; }
}

.xp-grid-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.xp-grid-item img {
    width: 100%;
    display: block;
    height: auto;
}
.xp-grid-item.hidden {
    display: none;
}
.xp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.xp-grid-item:hover .xp-overlay {
    opacity: 1;
}
.xp-overlay h4 {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 5px;
    font-weight: bold;
}
.xp-overlay span {
    color: #b0b0b0;
    font-size: 14px;
}
.xp-load-more {
    margin-top: 40px;
    background: transparent;
    color: #00e5c8;
    border: 2px solid #00e5c8;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.xp-load-more:hover {
    background: #00e5c8;
    color: #000;
}