* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-row {
    display: flex;
    gap: 16px;
}

.promo-banner-left {
    position: relative;
    flex: 0 0 70%;
    height: 600px;
    overflow: hidden;
}

.promo-banner-top-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 40%;
    padding-top: 24px;
    padding-right: 24px;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.promo-banner-bottom-text {
    position: absolute;
    left: 24px;
    bottom: 48px;
    right: auto;

    color: #ffffff;
    font-size: 20px;
    text-align: left;
    line-height: 1.1;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.promo-banner-custom-name-text {
    position: absolute;
    top: 24px;
    right: 36px;
    left: auto;

    color: #ffffff;
    font-size: 20px;
    text-align: right;
    line-height: 1.1;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.promo-banner-right {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 600px;
}

.promo-banner-right .tile {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.promo-banner-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.promo-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;

    padding-bottom: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-arrow:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .banner-row {
        flex-direction: column;
    }

    .promo-banner-left,
    .promo-banner-right {
        flex: 1;
        width: 100%;
        height: auto;
    }

    .promo-banner-left {
        height: 300px;
    }

    .promo-banner-right {
        height: 300px;
    }
}
