.asbg-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #0f172a;
    pointer-events: none;
}

.asbg-grid {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    z-index: 1;
    opacity: 0.3;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow: hidden;
    padding: 0;
    transform: rotate(-2deg) scale(1.1);
}

.asbg-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

.asbg-grid .asbg-column:nth-child(odd) {
    animation: asbgScrollDown 80s linear infinite;
}

.asbg-grid .asbg-column:nth-child(even) {
    animation: asbgScrollUp 85s linear infinite;
}

@keyframes asbgScrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes asbgScrollUp {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.asbg-column .asbg-item {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    flex-shrink: 0;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.asbg-column .asbg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.asbg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.9));
    pointer-events: none;
}

.asbg-main-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
}

.asbg-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asbg-heading {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: inherit;
}

.asbg-subheading {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
}

@media (max-width: 768px) {
    .asbg-heading {
        font-size: 42px;
    }
    .asbg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .asbg-grid .asbg-column:nth-child(4),
    .asbg-grid .asbg-column:nth-child(5) {
        display: none;
    }
}
