@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Serif+Display:ital@0;1&family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{

    --primary:#FF6B00;
    --primary-hover:#FF7E24;

    --bg:#090909;
    --surface:#111111;
    --card:#161616;

    --border:#262626;

    --text:#FFFFFF;
    --muted:#A1A1A1;

    --verified:#1D9BF0;

    --radius:18px;
    --radius-sm:12px;

    --shadow:
        0 8px 30px rgba(0,0,0,.35);
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
/*  background: linear-gradient(to bottom right, #6b21a8, #db2777, #facc15);*/
  min-height: 100vh;
  }
  
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    line-height:1.5;
}

img{
    display:block;
    width:100%;
}

button{
    font:inherit;
}

a{
    color:inherit;
    text-decoration:none;
}

/* PAGE */

.event-page{
    width:min(1200px,95%);
    margin:auto;
    padding-bottom:120px;
}

/* HERO */

.hero{
    position:relative;
    margin:20px 0 30px;
}

.hero-slider{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:15px;

    scrollbar-width:none;
}

.hero-slider::-webkit-scrollbar{
    display:none;
}

.hero-slider img{
    scroll-snap-align:start;

    width:100%;
    min-width:100%;

    height:550px;

    object-fit:cover;

    border-radius:24px;
}

.event-badge{
    position:absolute;
    left:20px;
    bottom:20px;

    background:rgba(0,0,0,.7);

    backdrop-filter:blur(12px);

    padding:10px 16px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;
}

/* HEADER */

.event-header{
    margin-bottom:30px;
}

.event-header h1{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:15px;
}

.social-proof{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}

.proof{
    background:var(--surface);
    border:1px solid var(--border);

    padding:10px 14px;

    border-radius:999px;

    font-size:14px;
}

.event-actions{
    display:flex;
    gap:12px;
}

.action-btn{
    background:var(--surface);

    border:1px solid var(--border);

    color:white;

    padding:12px 18px;

    border-radius:12px;

    cursor:pointer;

    transition:.2s;
}

.action-btn:hover{
    border-color:#444;
}

/* FACTS */

.facts-grid{
    display:grid;
    grid-template-columns:
        repeat(4,1fr);

    gap:15px;

    margin-bottom:35px;
}

.fact-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:20px;

    display:flex;
    align-items:center;
    gap:12px;
}

.fact-card i{
    color:var(--primary);
}

/* COUNTDOWN */

.countdown{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:25px;

    margin-bottom:40px;
}

.countdown h3{
    margin-bottom:20px;
}

.countdown-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:15px;
}

.count-box{
    background:#0d0d0d;

    border-radius:12px;

    text-align:center;

    padding:18px;
}

.count-box span{
    display:block;

    font-size:2rem;
    font-weight:700;
}

.count-box small{
    color:var(--muted);
}

/* SECTIONS */

.section-header{
    margin-bottom:20px;
}

.section-header h2{
    font-size:1.7rem;
}

/* TICKETS */

.ticket-section{
    margin-bottom:50px;
}

.ticket-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:15px;

    transition:.2s;
}

.ticket-card:hover{
    border-color:var(--primary);
}

.ticket-card p{
    color:var(--muted);
    font-size:.9rem;
}

.price{
    font-size:1.2rem;
    font-weight:700;
}

/* GALLERY */

.gallery-section{
    margin-bottom:50px;
}

.gallery-slider{
    display:flex;
    gap:15px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    scrollbar-width:none;
}

.gallery-slider::-webkit-scrollbar{
    display:none;
}

.gallery-slider img{
    width:350px;
    min-width:350px;

    height:240px;

    object-fit:cover;

    border-radius:18px;

    scroll-snap-align:start;
}

/* ABOUT */

.about-section{
    margin-bottom:50px;
}

.about-section p{
    color:var(--muted);

    max-width:800px;

    line-height:1.8;
}

/* ORGANIZER */

.organizer-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:24px;

    margin-bottom:50px;
}

.organizer-top{
    display:flex;
    gap:15px;

    align-items:center;

    margin-bottom:25px;
}

.organizer-avatar{
    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;
}

.organizer-name{
    display:flex;
    align-items:center;
    gap:8px;

    font-size:1.1rem;
    font-weight:700;
}

.verified{
    color:var(--verified);
}

.organizer-top p{
    color:var(--muted);
    margin:0;
}

.indicator-wrap .organizer-top {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    height: 90px;
    padding: 30px;
    border-radius: 10px;
}

.organizer-stats{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:15px;

    margin-bottom:20px;
}

.organizer-stats div{
    text-align:center;

    background:#0d0d0d;

    border-radius:12px;

    padding:15px;
}

.organizer-stats strong{
    display:block;

    font-size:1.2rem;
}

.organizer-stats span{
    color:var(--muted);
    font-size:.9rem;
}

.view-organizer{
    width:100%;

    border:none;

    background:var(--primary);

    color:white;

    padding:15px;

    border-radius:12px;

    cursor:pointer;
}

.view-organizer:hover{
    background:var(--primary-hover);
}

/* LOCATION */

.location-card{
    margin-bottom:50px;
}

.map-preview{
    height:260px;

    object-fit:cover;

    border-radius:18px;

    margin-bottom:15px;
}

.location-card h3{
    margin-bottom:5px;
}

.location-card p{
    color:var(--muted);

    margin-bottom:15px;
}

.directions-btn{
    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:white;

    padding:12px 18px;

    border-radius:12px;
}

/* RELATED */

.related-events{
    margin-bottom:60px;
}

.related-scroll{
    display:flex;
    gap:15px;

    overflow-x:auto;

    scrollbar-width:none;
}

.related-scroll::-webkit-scrollbar{
    display:none;
}

.related-card{
    min-width:250px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;
}

.related-card img{
    height:170px;
    object-fit:cover;
}

.related-card h4{
    padding:15px 15px 8px;
}

.related-card span{
    display:block;

    padding:0 15px 15px;

    color:var(--primary);

    font-weight:700;
}

/* STICKY CTA */

.sticky-ticket-bar{
    position:fixed;

    left:0;
    right:0;
    bottom:0;

    background:rgba(15,15,15,.96);

    backdrop-filter:blur(20px);

    border-top:1px solid var(--border);

    padding:12px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:9999;
}

.sticky-ticket-bar small{
    color:var(--muted);
    display:block;
}

.buy-ticket-btn{
    border:none;

    background:var(--primary);

    color:white;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;
}

.buy-ticket-btn:hover{
    background:var(--primary-hover);
}

.selected-ticket{
    border-color:var(--primary) !important;
    background:rgba(255,107,0,.08);
}

.location-card{
    margin-bottom:50px;
}

.location-info{
    margin-bottom:16px;
}

.location-info h3{
    margin-bottom:6px;
}

.location-info p{
    color:var(--muted);
}

.map-container{
    overflow:hidden;

    border-radius:18px;

    border:1px solid var(--border);

    margin-bottom:15px;

    background:var(--card);
}

.map-container iframe{
    width:100%;
    height:350px;
    border:none;
}

.location-actions{
    display:flex;
    justify-content:flex-end;
}

.directions-btn{
    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:white;

    padding:12px 18px;

    border-radius:12px;

    transition:.2s;
}

.directions-btn:hover{
    background:var(--primary-hover);
}

.ticket h3 {
  margin-bottom: 0.5rem;
}
.form-group{
    margin-bottom: 1rem;
}
.required{
    border:1px solid red;
}
.payment-form label,.payment-form input{
    font-size:13px;
}
.pay-btn{
    background: var(--primary);
    border:none;
}

.amount-group{
    display:flex;
    align-items: center;
    justify-content: space-between;
     background-color: var(--primary);
    border-radius: 30px;
    padding: 0 !important;
}

.amount-group .btn{
    background-color: var(--primary);
}
.amount-group .counter, .counter-tool{
    width:40px;
    height:40px;
    background-color: var(--primary);;
    border-radius: 50%;
     display:flex;
    align-items: center;
    justify-content: center;
}
.counter-tool{
    width:30px;
    height:30px;
}
.upgrade-category{
    border-bottom:1px solid #eae9e9;
    margin-bottom:20px;
    padding:15px 0;
}
.amount-group .counter i{
    color:#fff;
    font-size:30px;
}
.counter-tool i{
    color:#fff;
    font-size:20px;
}
.amount-div{
    display:flex;
    align-items: center;
    justify-content: center;
    background-color:#000;
    height:25px;
    min-width:25px;
    border-radius: 50%;
    font-size:13px;
    color:#fff;
}
.amount-div span{
    width:30px;
    height:30px;
    border-radius: 50%;
    background-color:#15141a ;
    color:#fff;
    display:flex;
    align-items: center;
    justify-content: center;
}
.category-group{
    height: auto;
    /*width:100%;*/
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:15px;
}
.category-group p{
    font-weight:bold;
    font-size:18px;
}
.alert {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  max-width: 500px;
  margin: 20px auto;
  position: fixed;
  animation: fadeIn 0.4s ease-in;
   left:50%;
  bottom:0%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  width:300px;
}

.alert-icon {
  font-size: 24px;
  margin-right: 16px;
}

.alert-content {
  flex: 1;
  font-size: 16px;
}

.alert-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
  padding: 0 8px;
}

.alert-danger {
  background-color: #ffe8e6;
  color: #b20000;
  border-left: 5px solid #ff4d4d;
}
.indicator-wrap {
    width: 100vw;
    height: calc(100vh - 0px);
    position: fixed;
    top: 0px;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 19999;
}
.indicator-wrap .load-message{
    font-size:14px;
    color:#666;
    text-align: center;
}
.indicator-wrap .download-qr {
    font-size: 14px;
    text-align: center;
    /* background: url(/images/fantasy-land-button.png) center / cover no-repeat; */
    height: 50px;
    width: max-content;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: #ffffff;
    background: #d30b04;
}
.hidden{
    display:none;
}
/* TABLET */

@media (max-width:992px){

    .facts-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .countdown-grid{
        grid-template-columns:
            repeat(2,1fr);
    }
}

/* MOBILE */

@media (max-width:768px){

    .event-page{
        width:94%;
    }

    .hero-slider img{
        height:280px;
    }

    .event-header h1{
        font-size:2rem;
    }

    .event-actions{
        flex-direction:column;
    }

    .facts-grid{
        grid-template-columns:1fr;
    }

    .countdown-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .gallery-slider img{
        width:280px;
        min-width:280px;
        height:200px;
    }

    .ticket-card{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .organizer-stats{
        grid-template-columns:1fr;
    }

    .sticky-ticket-bar{
        padding:10px 12px;
    }

    .buy-ticket-btn{
        padding:14px 20px;
    }
}