.dab-ticket {
    display: flex;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #2b0000, #e64a19);
    color: #fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 30px 60px rgba(0,0,0,0.18),
        0 5px 10px rgba(0,0,0,0.15);
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: background-image 0.6s ease-in-out;
}

/* subtle hover lift */
.dab-ticket:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.35),
        0 40px 80px rgba(0,0,0,0.25);
}

/* ===================================== */
/* TRUE SEMICIRCLE CUTS (DESKTOP) */
/* ===================================== */

.dab-ticket::before,
.dab-ticket::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: #000000; /* page bg */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.dab-ticket::before {
    left: -35px;
}

.dab-ticket::after {
    right: -35px;
}

/* ===================================== */
/* LEFT SIDE */
/* ===================================== */

.dab-ticket-left {
    flex: 3;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.dab-ticket-heading {
    font-size: 40px;
    font-weight: 900;
    line-height: 60px;
}

.dab-ticket-slider {
    position: relative;
    margin-top: 30px;
    min-height: 200px; /* ensures height stability */
}

.dab-ticket-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    opacity: 0;
    transform: translateX(40px);
    transition: 
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(.4,0,.2,1);
}

.dab-ticket-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

/* Dark overlay for readability */
.dab-ticket-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Keep content above overlay */
.dab-ticket-inner {
    position: relative;
    z-index: 1;
}

.dab-ticket-title {
    font-size: 52px;
    font-weight: 900;
    margin: 10px 0;
}

.dab-ticket-price {
    font-size: 26px;
    font-weight: bold;
}

/* ===================================== */
/* PERFORATION DIVIDER */
/* ===================================== */

.dab-ticket-divider {
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #fff,
        #fff 6px,
        transparent 6px,
        transparent 12px
    );
    opacity: 0.6;
    position: relative;
}

/* ===================================== */
/* TRIANGLE NOTCH ON DIVIDER */
/* ===================================== */

.dab-notch {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    z-index: 5;
}

/* top notch */
.dab-notch-top {
    top: -1px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 20px solid #000000;
}

/* bottom notch */
.dab-notch-bottom {
    bottom: -1px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 20px solid #000000;
}

/* ===================================== */
/* RIGHT SIDE */
/* ===================================== */

.dab-ticket-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0,0,0,0.2);
}

.dab-ticket-btn {
    background: #fff;
    color: #e64a19;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.dab-ticket-btn:hover {
    background: #000;
    color: #fff;
}

.dab-no-upcoming-events {
    text-align: start;
    opacity: 0.85;
}

/* ===================================== */
/* MOBILE VERSION */
/* ===================================== */

@media (max-width: 768px) {

    .dab-ticket {
        flex-direction: column;
    }

    /* move semicircle cuts to top & bottom */
    .dab-ticket::before,
    .dab-ticket::after {
        width: 55px;
        height: 55px;
        left: 50%;
        transform: translateX(-50%);
    }

    .dab-ticket::before {
        top: -35px;
    }

    .dab-ticket::after {
        bottom: -35px;
        top: auto;
    }

    /* perforation horizontal */
    .dab-ticket-divider {
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(
            to right,
            #fff,
            #fff 6px,
            transparent 6px,
            transparent 12px
        );
    }

    /* adjust notch orientation */
    .dab-notch-top {
        /* top: -18px; */
        border-top: none;
        /* border-bottom: 20px solid #000000; */
        border-bottom: none;
    }

    .dab-notch-bottom {
        /* bottom: -18px; */
        border-bottom: none;
        /* border-top: 20px solid #000000; */
        border-top: none;
    }

    .dab-ticket-heading {
        font-size: 28px;
    }

    .dab-ticket-title {
        font-size: 34px;
    }

    .dab-ticket-left {
        padding: 40px 30px;
    }

    .dab-ticket-right {
        padding: 30px;
    }
}