.event-detail-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.event-detail-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.event-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.event-hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
}

.event-hero-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

.event-hero-overlay .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

.hero-description {
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.event-hero-overlay span {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.event-detail-content,
.ticket-types-section,
.ticket-section {
    padding: 80px 0;
}

.event-meta {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.event-detail-content {
    padding: 80px 0;
    background: #fff;
}

.event-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.ticket-types-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.ticket-type-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.ticket-type-card:hover {
    transform: translateY(-5px);
}

.ticket-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}

.ticket-availability {
    font-size: 0.95rem;
    color: #777;
}

.vip-ticket {
    border: 2px solid gold;
}

.sold-out {
    color: red;
    font-weight: bold;
}

.ticket-btn {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
}

.ticket-btn:hover {
    background: #333;
}

@media (max-width: 992px) {

    .event-hero-overlay h1 {
        font-size: 2.2rem;
    }

    .event-hero-overlay p {
        font-size: 1rem;
    }

    .event-detail-hero,
    .event-hero-overlay{
        min-height:70vh;
    }
}

@media (max-width: 768px) {

    .event-hero-overlay h1 {
        font-size: 1.8rem;
    }

    .event-detail-hero,
    .event-hero-overlay{
        min-height:60vh;
    }

    .ticket-type-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .event-detail-hero,
    .event-hero-overlay{
        min-height:65vh;
    }

    .event-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .event-hero-overlay p {
        font-size: 0.9rem;
    }

    .ticket-price {
        font-size: 1.5rem;
    }
}

.ticket-card{

    height:100%;

    background:#fff;

    border:2px solid #e9ecef;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    cursor:pointer;

    display:flex;

    flex-direction:column;

}

.ticket-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    border-color:#014d2d;

}

.ticket-card.selected{

    border-color:#014d2d;

    background:#f8fff9;

    box-shadow:0 20px 50px rgba(1,77,45,.15);

}

.ticket-card-header{

    padding:30px;

    text-align:center;

    background:#014d2d;

    color:#fff;

}

.ticket-card-header h2{

    margin-top:10px;

    font-size:2rem;

    font-weight:700;

}

.ticket-card-body{

    padding:25px;

    flex:1;

}

.ticket-card-footer{

    padding:25px;

    border-top:1px solid #eee;

}

.ticket-remaining{

    display:inline-block;

    background:#e8f8ef;

    color:#198754;

    padding:6px 14px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.ticket-select-btn{

    width:100%;

    border-radius:10px;

    background:#014d2d;

    color:#fff;

    padding:12px;

    border:none;

    transition:.3s;

}

.ticket-select-btn:hover{

    background:#02663b;

}

.ticket-card.selected .ticket-select-btn{

    background:#d4af37;

    color:#000;

    font-weight:700;

}