* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    color: white;
    font-weight: 900;
    line-height: 1.1;
    z-index: 1002;
}

.logo span {
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.btn {
    background: #ff2b55;
    padding: 18px 18px;
    color: white;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
    z-index: 1002;
    user-select: none;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 20%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
}

.red {
    color: #ff2b55;
}

.white {
    color: white;
}

.hero-content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
}

.countdown-box {
    margin-top: 30px;
    padding: 20px;
    width: 270px;
    min-height: 135px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.countdown-box p {
    margin-top: 0;
}

.numbers {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.numbers div {
    text-align: center;
}

.numbers span {
    font-size: 28px;
    font-weight: 900;
    color: #ff2b55;
    display: block;
}

.numbers small {
    font-size: 12px;
    opacity: 0.8;
    color: white;
}

/* FESTIVAL INFO */
.festival-info {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #ff2b55;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff2b55;
}

.info-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: #ff2b55;
    color: white;
}

.btn-primary:hover {
    background: #e61f4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,43,85,0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff2b55;
    border: 2px solid #ff2b55;
}

.btn-secondary:hover {
    background: #ff2b55;
    color: white;
}

/* PROGRAM SECTION */
.program-section {
    padding: 80px 0;
    background: white;
}

/* ACCORDION */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.accordion-header {
    background: linear-gradient(135deg, #ff2b55, #ff6b9d);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    user-select: none;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #e61f4a, #ff4d82);
}

.accordion-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.accordion-header h3 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.4s ease;
}

.artist-card {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.artist-card:last-child {
    border-bottom: none;
}

.artist-card .time {
    font-size: 20px;
    font-weight: bold;
    color: #ff2b55;
    min-width: 70px;
    text-align: center;
}

.artist-card h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 20px;
}

.artist-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* SPONSOR SECTION */
.sponsor-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.sponsor-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 94%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.sponsor-logo img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

.sponsor-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.sponsor-cta {
    font-size: 18px;
    padding: 20px 50px;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 35px;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* LIGHTBOX (About görselleri) */
.artist-lightbox-row {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.artist-lightbox-thumb {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-lightbox-thumb img {
    width: 260px;
    height: auto;
    object-fit: cover;
    display: block;
}

.artist-lightbox-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255,43,85,0.22);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 84vh;
    border-radius: 18px;
    box-shadow: 0 35px 120px rgba(0,0,0,0.55);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
    font-size: 28px;
    line-height: 44px;
    color: #111;
}

.lightbox-close:hover {
    background: rgba(255,255,255,1);
}

@media (max-width: 768px) {
    .artist-lightbox-row {
        gap: 16px;
        flex-direction: unset;
    }

    .artist-lightbox-thumb img {
        width: 100%;
        max-width: 360px;
        height: 210px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 18px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(0, 0, 0, 0.96);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav a {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 15px;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .hero-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
        font-weight: 500;
    }

    .countdown-box {
        width: 100%;
        max-width: 320px;
        margin: 25px auto 0;
    }

    .numbers {
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .numbers span {
        font-size: 22px;
    }

    .overlay {
        background: rgba(0,0,0,0.72);
    }

    .container {
        padding: 0 20px;
    }

    .festival-info,
    .program-section,
    .sponsor-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .info-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-header h3 {
        font-size: 20px;
    }

    .artist-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;   /* masaüstü */
    width: auto;
    display: block;
}

.sponsor-section {
    padding: 90px 20px;
    background: #fff;
    color: #111;
}

.sponsor-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.sponsor-main-title {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin-bottom: 60px;
}

.sponsor-group {
    margin-bottom: 75px;
}

.sponsor-group h3 {
    font-size: 28px;
    font-weight: 400;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.sponsor-line {
    width: 100%;
    max-width: 780px;
    height: 1px;
    background: rgba(0,0,0,0.55);
    margin: 0 auto 32px;
}

.sponsor-line.small {
    max-width: 680px;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 34px 13px;
    margin: 0 auto;
}

.sponsor-logos img {
    max-width: 200px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

.supporters {
    max-width: 1300px;
}

.content-partners {
    max-width: 760px;
    gap: 42px 55px;
}

.content-partners img {
    max-width: 145px;
    max-height: 70px;
}

.media-partners {
    max-width: 720px;
    gap: 40px 38px;
}

.media-partners img {
    max-width: 150px;
    max-height: 70px;
}

/* Mobil */
@media (max-width: 768px) {
    .sponsor-section {
        padding: 70px 16px;
    }

    .sponsor-main-title {
        font-size: 32px;
        margin-bottom: 45px;
    }

    .sponsor-group {
        margin-bottom: 38px;
    }

    .sponsor-group h3 {
        font-size: 23px;
    }

    .sponsor-line {
        margin-bottom: 28px;
    }

    .sponsor-logos {
        gap: 28px 30px;
    }

    .sponsor-logos img {
        max-width: 150px;
        max-height: 100px;
    }
}

.sponsor-action {
    margin: -25px auto 55px;
    text-align: center;
}

.sponsor-action p {
    font-size: 17px;
    color: rgba(0,0,0,0.65);
    margin-bottom: 18px;
}

.sponsor-form-btn {
    border: none;
    background: #ff2b55;
    color: white;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255,43,85,0.28);
    transition: 0.3s ease;
}

.sponsor-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255,43,85,0.38);
}

.sponsor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sponsor-modal.active {
    display: flex;
}

.sponsor-modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 22px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: modalUp 0.35s ease;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sponsor-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f2f2f2;
    font-size: 26px;
    cursor: pointer;
    line-height: 36px;
}

.sponsor-modal-content h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 10px;
}

.sponsor-modal-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.sponsor-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sponsor-form input,
.sponsor-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.sponsor-form textarea {
    min-height: 110px;
    resize: vertical;
}

.sponsor-form input:focus,
.sponsor-form textarea:focus {
    border-color: #ff2b55;
    box-shadow: 0 0 0 4px rgba(255,43,85,0.10);
}

.form-success {
    padding: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

.sponsor-form button {
    margin-top: 8px;
    border: none;
    background: #111;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.sponsor-form button:hover {
    background: #ff2b55;
}

@media (max-width: 768px) {
    .sponsor-modal-content {
        padding: 32px 22px;
    }

    .sponsor-modal-content h3 {
        font-size: 24px;
    }
}


.ticket-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.ticket-modal.active {
    display: flex;
}

.ticket-modal-content {
    position: relative;
    width: 100%;
    max-width: 750px;
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.ticket-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f2f2f2;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
}

.ticket-step {
    display: none;
}

.ticket-step.active {
    display: block;
}

.ticket-step h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 8px;
}

.ticket-step p {
    color: #666;
    margin-bottom: 26px;
}

.artist-options,
.category-options {
    display: grid;
    gap: 14px;
}

.artist-card-ticket,
.category-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    text-align: left;
    transition: 0.3s ease;
}

.artist-card-ticket:hover,
.category-card:hover {
    border-color: #ff2b55;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255,43,85,0.16);
}

.artist-card-ticket span,
.category-card span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.artist-card-ticket small {
    display: block;
    margin-top: 6px;
    color: #777;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card.sold-out, .category-card.sold-out:hover {
    opacity: 0.5;
    cursor: not-allowed !important;
    background: #f8f8f8;
    color: #999;
}

.category-card.sold-out strong {
    color: #999 !important;
}

.category-card strong {
    color: #ff2b55;
    font-size: 20px;
}

.payment-summary {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 22px;
    text-align: left;
    margin-bottom: 20px;
}

.payment-summary p {
    margin: 10px 0;
    color: #222;
}

.payment-btn {
    width: 100%;
    border: none;
    background: #ff2b55;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    font-size: 16px;
}

.ticket-back {
    margin-top: 14px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 768px) {
    .ticket-modal-content {
        padding: 32px 22px;
    }

    .ticket-step h3 {
        font-size: 25px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card-ticket.selected,
.category-card.selected {
    border-color: #ff2b55;
    background: #fff0f3;
    box-shadow: 0 14px 30px rgba(255,43,85,0.16);
}

.quantity-options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.quantity-btn {
    flex: 1;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.quantity-btn:hover {
    border-color: #ff2b55;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,43,85,0.12);
}

.quantity-btn.selected {
    border-color: #ff2b55;
    background: #fff0f3;
    color: #ff2b55;
    box-shadow: 0 8px 20px rgba(255,43,85,0.16);
}

.category-artist-image-wrap {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #000;
    box-shadow: 0 8px 24px rgba(255,43,85,0.20);
}

.category-artist-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}

/* PAYMENT PAGE */
.payment-page {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.payment-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 20px;
}

.payment-box {
    background: white;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.payment-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #111;
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-form label {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    text-align: left;
    display: block;
    margin-bottom: 4px;
}

.payment-form input,
.payment-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.payment-form input:focus,
.payment-form select:focus {
    border-color: #ff2b55;
    box-shadow: 0 0 0 4px rgba(255,43,85,0.10);
}

.card-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
}

@media (max-width: 768px) {
    .card-row {
        grid-template-columns: 1fr;
    }

    .payment-box {
        padding: 28px 22px;
    }
}

/* Category Step - Image Left Layout */
.category-content-wrap {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.category-left {
    flex: 0 0 400px !important;
}

.category-left img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.category-right {
    flex: 1;
}

.category-artist-image-wrap {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #000;
    box-shadow: 0 8px 24px rgba(255,43,85,0.20);
}

.category-artist-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}

.category-options {
    display: grid;
    gap: 14px;
}

/* Ticket Modal - Scrollable on mobile */
.ticket-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}

.ticket-modal.active {
    display: flex;
}

.ticket-modal-content {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 800px;
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    margin: 20px auto;
}

@media (max-width: 768px) {
    .category-content-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .category-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .category-left img {
        width: 100%;
        max-height: 180px;
        object-fit: cover;
    }

    .category-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .ticket-modal {
        padding: 12px;
        align-items: flex-start;
    }

    .ticket-modal-content {
        max-width: 100%;
        padding: 24px 16px;
        height: auto;
        border-radius: 20px;
        margin: 10px 0;
    }

    .ticket-step h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .ticket-step p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    /* Category options - single column grid on mobile */
    .category-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Category cards - larger touch targets for mobile */
    .category-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 18px;
        min-height: 70px;
        border-radius: 14px;
    }

    .category-card > div {
        text-align: left !important;
    }

    .category-card span {
        font-size: 18px;
        font-weight: 800;
        color: #111;
    }

    .category-card strong {
        font-size: 18px;
    }

    .category-card small {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Selected state - more visible on mobile */
    .category-card.selected {
        border-width: 2px;
        background: linear-gradient(135deg, #fff0f3 0%, #ffe4e9 100%);
        box-shadow: 0 8px 25px rgba(255,43,85,0.25);
    }

    .category-card.selected span {
        color: #ff2b55;
    }

    /* Artist cards in ticket modal - mobile */
    .artist-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .artist-card-ticket {
        padding: 16px 18px;
        min-height: 70px;
        border-radius: 14px;
    }

    .artist-card-ticket span {
        font-size: 17px;
    }

    .artist-card-ticket small {
        font-size: 13px;
    }

    /* Artist image in category step - mobile */
    #categoryArtistImage {
        width: 100%;
        max-height: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    /* Quantity selector - mobile */
    .quantity-selector {
        margin-top: 20px;
    }

    .quantity-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .quantity-btn {
        padding: 16px 12px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
        min-height: 56px;
    }

    /* Ticket info notes - mobile */
    .ticket-info-notes {
        margin-top: 16px;
        padding: 14px;
        background: #f8f8f8;
        border-radius: 12px;
        font-size: 12px;
        line-height: 1.7;
    }

    .ticket-info-notes p {
        margin: 6px 0;
    }

    /* Payment button - mobile */
    .payment-btn {
        padding: 18px;
        font-size: 16px;
        margin-top: 18px;
        border-radius: 14px;
    }

    /* Back button - mobile */
    .ticket-back {
        margin-top: 16px;
        padding: 12px;
        font-size: 14px;
    }

    /* Selected artist text */
    #selectedArtistText {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 14px;
        color: #333;
    }
}
