
/*-------------------------
    Concert List Page
--------------------------*/
.concerts-wrapper { background-color: #090808; width: 100%; padding-bottom: 40px; }
.concert-header { max-width: 1800px; margin: auto; padding-top: 40px; text-align: center;}
.concert-header h2 { font-family: "Stick No Bills", sans-serif; color: #FFF; font-size: 2.4em; font-weight: 500; letter-spacing: 3px; margin-bottom: 0; text-transform: uppercase; }
.concert-header p { font-family: "Sofia Sans Extra Condensed", sans-serif; color: #DFDFDF; font-size: 1.3em; opacity: 0.8; margin-top: 5px; }
.concert-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1800px; min-width: 280px; margin: auto; padding: 40px 10px; }
.concert-box { position: relative; width: 333px; height: 250px; overflow: hidden; display: block; border: 1px solid #313131; text-decoration: none; }
.concert-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.concert-box:hover img { transform: scale(1.10); }
.concert-box .overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: rgba(0, 0, 0, 0.08); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 15px 20px; color: #ffffff; box-sizing: border-box; }
.artist-name { font-family: "Stick No Bills", sans-serif; text-transform: uppercase; font-weight: 400; letter-spacing: 1px; font-size: 1.6em; line-height: 2.2; flex-grow: 1; }
.concert-date-thumb { font-family: "Sofia Sans Extra Condensed", sans-serif; font-size: 1.6em; font-weight: 400; opacity: 0.9; align-self: flex-end; margin-top: auto; }
.material-symbols-outlined { display: inline-block; vertical-align: middle; line-height: 1; margin-right: 5px; font-size: 18px; }

/*-------------------------
    Artist_view Page
--------------------------*/
.ticket-container { width: 100%; max-width: 620px; min-width: 310px; margin: 20px auto; padding: 0; box-sizing: border-box; overflow: hidden; }
.ticket-wrapper { display: flex; width: 100%; height: auto; min-height: 200px; border: 1px solid #313131; position: relative; background: #1a1a1a; }
.ticket-info { flex: 1.8; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; color: #ffffff; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 2; }
.ticket-photo { flex: 1.2; overflow: hidden; border-left: 1px solid rgba(255,255,255,0.1); display: flex; }
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; }
.venue-location { display: flex; justify-content: space-between; width: 100%; font-family: "Sofia Sans Extra Condensed", sans-serif; font-size: 1.2em; letter-spacing: 1px; text-transform: uppercase; opacity: 0.6; }
.artist-details h1 { font-family: "Stick No Bills", sans-serif; font-size: 2.0em; margin: 20px 0 0 0; line-height: 1; text-transform: uppercase; font-weight: 500; }
.tour-date-row { display: flex; justify-content: space-between; align-items: baseline; width: 100%; margin-top: 5px; }
.tour-name, .ticket-date { font-family: "Sofia Sans Extra Condensed", sans-serif !important; font-size: 1.2em !important; font-weight: 400 !important; text-transform: uppercase !important; letter-spacing: 1.0px !important; font-style: normal !important; line-height: 1 !important; margin: 0 !important; padding: 0 !important; opacity: 0.6; color: #ffffff; }
.ticket-divider { width: 100%; height: 1px; border-bottom: 1px dashed rgba(255,255,255,0.9); margin: 8px 0; }
.seating-setlist { display: flex; justify-content: space-between; align-items: flex-end; }
.seat-info { display: flex; gap: 40px; }
.seat-block span { font-family: "Sofia Sans Extra Condensed", sans-serif; font-size: 1.0em; opacity: 0.6; display: block; }
.seat-block strong { font-family: "Stick No Bills", sans-serif; font-size: 1.4em; }
.right-meta { text-align: right; }
.setlist-link { font-family: "Sofia Sans Extra Condensed", sans-serif; color: #fff; text-decoration: underline; font-size: 0.85em; opacity: 0.8; }
@media (max-width: 480px) { .ticket-wrapper { height: auto; } .artist-details h1 { font-size: 1.6em; } .seat-info { gap: 10px; } .ticket-info { padding: 15px; } .ticket-photo { flex: 1; } .tour-date-row { flex-direction: column; align-items: flex-start; } .tour-name, .ticket-date { margin-top: 5px !important; } }