/* =========================== TicketsFest Frontend Styles — blue overlay, 4/5, contain =========================== */ /* Tokens */ :root{ --bg:#f6f7fb; --text:#0f172a; --muted:#6b7280; --line:#e5e7eb; --brand:#2563eb; /* синій */ --accent-yellow:#ffcc00; /* ЖОВТИЙ ДЛЯ HOVER НА КНОПЦІ */ --shadow:0 6px 18px rgba(15,23,42,.10); --shadow-hover:0 14px 36px rgba(15,23,42,.18); --radius:22px; } /* Base */ *{box-sizing:border-box} body{ margin:0;background:var(--bg);color:var(--text); font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; } .tfe-wrap{max-width:1200px;margin:0 auto;padding:24px} .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;clip:rect(0,0,0,0);overflow:hidden} /* Toolbar */ .tfe-toolbar{ display:flex;align-items:center;justify-content:center;gap:12px; flex-wrap:wrap;margin:0 0 18px } .tfe-select-inline{ height:42px;min-width:210px;max-width:360px; padding:0 44px 0 14px; border:1px solid var(--line);border-radius:999px; background:#fff;appearance:none;-webkit-appearance:none;outline:0; font-size:14px;color:#111827;cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat;background-position:right 12px center; transition:border-color .2s,box-shadow .2s; text-overflow:ellipsis;white-space:nowrap;overflow:hidden; } .tfe-select-inline:hover{border-color:#d1d5db} .tfe-select-inline:focus{box-shadow:0 0 0 3px rgba(37,99,235,.15);border-color:var(--brand)} .tfe-btn-inline{ height:42px;padding:0 14px;border-radius:999px;background:#fff;border:1px solid var(--line); color:#111827;font-weight:600;cursor:pointer;transition:box-shadow .2s,transform .1s } .tfe-btn-inline:hover{box-shadow:0 3px 10px rgba(15,23,42,.06)} .tfe-btn-inline:active{transform:translateY(1px)} /* Grid */ .events-list{display:grid;grid-template-columns:repeat(1,1fr);gap:22px;transition:opacity .2s ease} @media (min-width:768px){ .events-list{grid-template-columns:repeat(3,1fr)} } @media (min-width:1200px){ .events-list{grid-template-columns:repeat(5,1fr)} } /* Card */ .event-item{position:relative} .event-card{position:relative} .event-thumbnail-wrapper{ position:relative;width:100%; aspect-ratio:4/5; overflow:hidden;border-radius:var(--radius); background:transparent; box-shadow:var(--shadow); transition:transform .22s ease, box-shadow .22s ease } .event-item:hover .event-thumbnail-wrapper{transform:translateY(-4px);box-shadow:var(--shadow-hover)} .event-thumbnail{ width:100%;height:100%;display:block; object-fit:contain; object-position:center; background:transparent; } /* Fallback aspect-ratio */ @supports not (aspect-ratio: 4 / 5){ .event-thumbnail-wrapper::before{content:"";display:block;padding-top:125%} .event-thumbnail{position:absolute;inset:0} } /* Overlay */ .event-overlay{ position:absolute;inset:0; background:rgba(37,99,235,.88); color:#fff; display:flex;flex-direction:column;justify-content:flex-end;gap:8px; padding:14px;border-radius:var(--radius); opacity:0;visibility:hidden; transition:opacity .18s ease, visibility .18s ease; pointer-events:none; } .event-item:hover .event-overlay{opacity:1;visibility:visible} @media (hover:none){ .event-overlay{ opacity:1;visibility:visible; background:linear-gradient(to top, rgba(37,99,235,.92), rgba(37,99,235,0) 65%); padding-top:35%; } } /* Datetime */ .event-datetime{ position:absolute;left:12px;top:12px; background:rgba(255,255,255,.06); color:#ffffff; font-weight:800;font-size:13px;line-height:1; border:1px solid rgba(255,255,255,.45); border-radius:10px;padding:7px 10px; backdrop-filter:blur(4px); pointer-events:none } /* Content */ .event-title{ margin:0;font-size:18px;font-weight:800;line-height:1.2; color:#ffffff; display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical; overflow:hidden;text-overflow:ellipsis; word-break:keep-all; overflow-wrap:anywhere; hyphens:auto; } .event-meta{ font-size:14px;color:#ffffff;display:flex;gap:6px;flex-wrap:wrap; text-wrap:balance; } @supports not (text-wrap: balance){ .event-meta{word-break:normal;overflow-wrap:anywhere;} } .event-meta .price{font-weight:800;color:#ffffff} /* CTA */ .event-cta{ margin-top:8px;align-self:flex-start; pointer-events:auto;text-decoration:none;user-select:none; height:38px;padding:0 14px;border-radius:10px; display:inline-flex;align-items:center;justify-content:center; background:#ffffff;color:#111827;font-weight:700;font-size:14px; border:1px solid rgba(255,255,255,.85); box-shadow:0 4px 10px rgba(17,24,39,.14); transition:background .2s, color .2s, transform .1s; white-space:nowrap; } .event-cta:hover, .event-cta:focus-visible{ background:#f8fafc; color:var(--accent-yellow); outline:none; } .event-cta:active{transform:translateY(1px)} /* Empty */ .no-events{grid-column:1/-1;text-align:center;color:#6b7280;padding:18px 8px} /* Spinner */ #tfe-spinner{height:2px;background:linear-gradient(90deg,var(--brand),#60a5fa);animation:tfeBar 1.1s linear infinite;border-radius:2px;margin-bottom:10px} @keyframes tfeBar{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}} /* Safe defaults */ #events_list, .tfe-events{opacity:1} #tfe-spinner, .tfe-spinner{display:none} /* ── SOLD OUT (мінімальний патч) ───────────────────────────── */ /* 1) показуємо SOLD OUT окремим рядком у метаданих */ .event-meta .price.soldout{ display:block; /* ← власний рядок */ width:100%; margin-top:2px; color:#ffd7dc; /* ніжніший відтінок на синьому */ font-weight:900; letter-spacing:.06em; } /* 2) (опційно) маленький бейдж на постері */ .event-item[data-soldout="1"] .event-thumbnail-wrapper::after{ content:"SOLD OUT"; position:absolute; left:12px; top:12px; padding:6px 10px; border-radius:10px; background:#d73149; color:#fff; font-weight:900; font-size:12px; box-shadow:0 4px 10px rgba(15,23,42,.14); } /* 3) (опційно) якщо потрібно — відключаємо кнопку на sold out */ .event-item[data-soldout="1"] .event-cta{ opacity:.55; pointer-events:none; } {"id":2855,"date":"2025-09-08T01:22:55","date_gmt":"2025-09-07T23:22:55","guid":{"rendered":"https:\/\/ticketsfest.eu\/"},"modified":"2025-09-08T01:22:56","modified_gmt":"2025-09-07T23:22:56","slug":"queen-machine-brno","status":"publish","type":"event","link":"https:\/\/ticketsfest.eu\/cs\/queen-machine-brno\/","title":{"rendered":"Queen Machine LIVE AID 40 Anniversary Tour"},"content":{"rendered":"
In just 21 minutes, Queen changed rock history. It happened at Wembley Stadium in front of 72,000 fans during Live Aid in 1985<\/strong>. Freddie Mercury\u2019s legendary performance is still regarded as one of the greatest moments in music.<\/p>\n In 2025<\/strong>, Queen Machine will take this spirit on the road with the Anniversary Tour 2025<\/strong> \u2013 a spectacular tribute to Queen\u2019s iconic Live Aid concert and the band\u2019s timeless catalog of hits. And unlike the original 21-minute set, this time it will be a full-scale arena experience.<\/p>\n Audiences can expect a powerful live show where music, performance, and energy meet. Every detail, from setlist to transitions, is crafted to capture the magic of Queen. Year after year, Queen Machine raise the bar for tribute bands, and 2025 promises to be bigger than ever.<\/p>\n With over 700 concerts<\/strong> performed worldwide, Queen Machine has thrilled audiences across the USA and Europe.<\/p>\n In 2022<\/strong>, they played in Denmark, Sweden, Monaco, and the UK, including a milestone concert at London\u2019s Eventim Apollo with the London Symphonic Rock Orchestra and Kerry Ellis.<\/p>\n<\/li>\n In 2023<\/strong>, they joined TV2\u2019s Kn\u00e6k Cancer<\/em> charity broadcast, helping raise over 113 million DKK<\/strong> for cancer research.<\/p>\n<\/li>\n In 2024<\/strong>, Queen Machine collaborated with the Danish National Entertainment Orchestra<\/strong>, performing symphonic arrangements of Queen\u2019s greatest hits for more than 28,000 fans<\/strong>, including three sold-out concerts at the DR Koncerthuset in Copenhagen.<\/p>\n<\/li>\n<\/ul>\n The year 2025<\/strong> opened with four sold-out performances at the Danish National Opera with Our Night at the Opera<\/em>, a tribute to Queen\u2019s legendary album A Night at the Opera<\/em>, marking its 50th anniversary.<\/p>\n Now, the Anniversary Tour 2025<\/strong> will bring Queen Machine\u2019s unparalleled tribute to arenas, festivals, and venues worldwide.<\/p>","protected":false},"excerpt":{"rendered":" Queen Machine \u2013 Anniversary Tour 2025 In just 21 minutes, Queen changed rock history. It happened at Wembley Stadium in front of 72,000 fans during Live Aid in 1985. Freddie Mercury\u2019s legendary performance is still regarded as one of the greatest moments in music. In 2025, Queen Machine will take this spirit on the road […]<\/p>","protected":false},"featured_media":2856,"template":"","tour_country":[400],"tour_city":[451],"tour_venue":[527],"event_category":[518],"class_list":["post-2855","event","type-event","status-publish","has-post-thumbnail","hentry","tour_country-czech-republic","tour_city-brno","tour_venue-zoner-bobyhall","event_category-concerts"],"blocksy_meta":[],"acf":[],"uagb_featured_image_src":{"full":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3.webp",1080,1350,false],"thumbnail":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3-150x150.webp",150,150,true],"medium":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3-240x300.webp",240,300,true],"medium_large":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3-768x960.webp",768,960,true],"large":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3-819x1024.webp",819,1024,true],"1536x1536":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3.webp",1080,1350,false],"2048x2048":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3.webp",1080,1350,false],"trp-custom-language-flag":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3-10x12.webp",10,12,true],"tour_banner_16x9":["https:\/\/ticketsfest.eu\/wp-content\/uploads\/2025\/09\/test-3.webp",720,900,false]},"uagb_author_info":{"display_name":"TicketsFest.EU","author_link":"https:\/\/ticketsfest.eu\/cs\/author\/"},"uagb_comment_info":0,"uagb_excerpt":"Queen Machine \u2013 Anniversary Tour 2025 In just 21 minutes, Queen changed rock history. It happened at Wembley Stadium in front of 72,000 fans during Live Aid in 1985. Freddie Mercury\u2019s legendary performance is still regarded as one of the greatest moments in music. In 2025, Queen Machine will take this spirit on the road…","_links":{"self":[{"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/event\/2855","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/event"}],"about":[{"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/types\/event"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/media\/2856"}],"wp:attachment":[{"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/media?parent=2855"}],"wp:term":[{"taxonomy":"tour_country","embeddable":true,"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/tour_country?post=2855"},{"taxonomy":"tour_city","embeddable":true,"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/tour_city?post=2855"},{"taxonomy":"tour_venue","embeddable":true,"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/tour_venue?post=2855"},{"taxonomy":"event_category","embeddable":true,"href":"https:\/\/ticketsfest.eu\/cs\/wp-json\/wp\/v2\/event_category?post=2855"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}
\n\ud83c\udf0d About Queen Machine<\/h3>\n
\n