.tickets-page .club-ticket-item {
    background-color: transparent;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tickets-page .club-ticket-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

    .tickets-page .club-ticket-item .thumb {
        background-color: transparent;
        background: transparent;
        position: relative;
        height: 220px;
        overflow: hidden;
    }

.tickets-page .club-ticket-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: transparent;
    background: transparent;
}

.tickets-page .club-ticket-item .thumb .price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 26px;
    padding: 18px 28px;
    min-width: 220px;
    max-width: 80%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.24);
}

.tickets-page .club-ticket-item .thumb .price .club-card-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.4px;
}

.tickets-page .club-ticket-item .down-content {
    background-color: #fafafa;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    align-items: center;
    text-align: center;
}

.tickets-page .club-ticket-item .down-content span {
    font-size: 14px;
    color: #656c74;
    font-weight: 700;
    text-transform: none;
}

.tickets-page .club-ticket-item .down-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
}

.tickets-page .club-ticket-item .ticket-summary {
    margin: 5px 0 20px;
    color: #656c74;
    font-size: 14px;
    line-height: 1.6;
}

.tickets-page .club-ticket-item .down-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.tickets-page .club-ticket-item .down-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2a2a2a;
    font-weight: 400;
}

.tickets-page .club-ticket-item .down-content ul li i {
    color: rgb(0, 45, 114);
    margin: 0;
    width: auto;
    height: auto;
}

.tickets-page .club-ticket-item .down-content .main-dark-button {
    margin-top: auto;
    align-self: center;
    text-align: center;
}


@media (min-width: 768px) {
    .header-area .main-nav.nav-expanded {
        gap: 24px;
    }

    .header-area .main-nav.nav-expanded .nav-right {
        justify-content: flex-end;
        gap: 24px;
    }
}

