.promo-container {
    width: 100%;
    overflow: visible;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    grid-column: span var(--col-span);
    background: var(--background);
    font-family: 'Rajdhani', sans-serif;
    height: 20rem;
    position: relative;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    position: relative;
    overflow: hidden; /* Add this to ensure child pseudo-element respects border radius */
}

.promo-card h1 {
    color: #fff;
    font-family: Rajdhani;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 51px; /* 98.077% */
    max-width: 513px;
    z-index: 1;
    position: relative;
}

.promo-card h1 span {
    color: var(--color);
}

.promo-card p {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-wrap: wrap;
    max-width: 400px;
    font-family: 'Rajdhani', sans-serif;
    z-index: 1;
    position: relative;
}

.characters {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.zar {
    position: absolute;
    bottom: -140.2px;
    right: -99.9px;
    z-index: 0;
    pointer-events: none;
}

.bg-image {
    position: absolute;
    top: 3.125rem;
    left: -13.75rem;
    scale: 1.8;
    width: 100%;
    height: 200%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.saha {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.promo-button {
    position: absolute;
    bottom: 30px;
    left: 40px;
    border-radius: 33px;
    border: var(--border);

    background: var(--background);

    box-shadow: 6px 4px 11.6px 0 rgba(255, 255, 255, 0.17) inset;
    padding: 10px 40px;
    z-index: 10;
    color: #ffffffb0;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
}

.promo-button:hover {
    scale: 1.1;
    transition: all 0.2s ease;
    cursor: pointer;
}

.promo-button svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.kariarkaplan {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    /* Pan to show more of the right side while keeping cover */
    transform-origin: center center;
    transform: translateX(20%) translateY(20%) scale(1.4);
    height: 100%;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}
