.ticket-sales-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.ticket-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: radial-gradient(circle at 90% 10%, #ffe1c8 0%, #fff4ea 35%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #eadfce;
    border-left: 5px solid #f46e00;
    margin-bottom: 2rem;
}

.ticket-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ticket-details {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ticket-image {
    flex: 1;
}

.ticket-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ticket-purchase {
    flex: 1;
    text-align: center;
}

.ticket-purchase h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #f46e00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d25c00;
}

.ticket-selector {
    margin-bottom: 1.5rem;
    text-align: left;
}

.ticket-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.ticket-selector select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.ticket-service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #eadfce;
    background: #fffaf4;
    text-align: left;
}

.ticket-service-note h3 {
    margin-bottom: 0.5rem;
    color: #1f2329;
}

.ticket-service-note p {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.ticket-service-note a {
    color: #f46e00;
    font-weight: 700;
}
