@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
 --primary-color: #374709;
  --secondary-color: #919103;
  --primary-blue: #0081c5;
  --bg1: #0a1f13;
  --bg2: #00120a;
  --accent: #6ee66e;
  --glass-2: rgba(255, 255, 255, 0.03);
  --text: #e8fff0;
  --gradient: linear-gradient(90deg, #374709 0%, #d3d32e 100%);
 
}

* {
  box-sizing: border-box;
}

.ticket-body {
  /* background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000000 20%, #000000 40%, #020202 65%, #000000 100%); */
  min-height: 80vh;
  font-family: 'Futura Cyrillic', sans-serif;
  overflow-x: hidden;
  padding: 60px 0px;
}

.registration-text {
  font-family: "Poppins", sans-serif
}

.inner-banner {
  background: transparent !important;
  height: auto;
  padding-top: 20px;
}

/* .footer {
  padding: 0px;
  background: none;
} */

/* Compact Ticket Container */
.ticket-container {
  perspective: 1000px;
  height: 100%;
  overflow: visible;
}

.ticket-card {
  display: block;
  min-height: 330px;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgb(0 0 0 / 9%); */
  /* backdrop-filter: blur(20px); */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* .ticket-card:hover {
  transform: translateY(-5px) rotateX(3deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
} */

/* Animated Background Orbs - Smaller */
.background-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  animation: float 6s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

/* Reduced from 60px */
.orb:nth-child(2) {
  width: 25px;
  height: 25px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

/* Reduced from 40px */
.orb:nth-child(3) {
  width: 50px;
  height: 50px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

/* Reduced from 80px */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }

  /* Reduced movement */
}

/* Left Section - Pricing - More compact */
.ticket-left {
  width: 100%;
  position: relative;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  color: #fff;
  background-position: 40% 50%;
  background-repeat: no-repeat;
  background-size: cover;
background-image: var(--gradient);
  border-radius: 25px 25px 0 0;
  animation: bgZoom 3s ease-in-out infinite;
  background-image: url(../img/ticket_bg_blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}



/* Zoom Animation Keyframes */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}


.ticket-left::after{
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  border-right: 2px dashed #ffffff42;
}


/* Compact Price Tag */
.price-tag {
  background: rgb(0, 0, 0);
backdrop-filter: blur(44px);
-webkit-backdrop-filter: blur(44px);
border-radius: 12px;
padding: 15px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.3);
margin: 15px 0;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}



.price {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
}

.price-sub {
  font-size: 9px;
  opacity: 0.9;
  margin: 0;
}

/* price-strike */
.price-tag-strike .price-cut {
  font-size: 13px;
  text-decoration: line-through;
  margin: 0;
}

/* price-strike */

/* Compact Badge */

.ticket-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 0 0 0 12px;
  font-weight: 600;
  font-size: 0.8rem;
  background-color: #FC6900;
  z-index: 10;
}








.premium-button {
  position: relative;
  display: inline-block;
  padding: 14px 15px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffff;
  background: #000;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease, background-position 1s ease;
  letter-spacing: 0.5px;
  z-index: 9;
  margin: auto;
  display: block;
  transition: .5s;
  width: 100%;
  margin-top: 30px;

}

.premium-button:hover {
  transform: translateY(-2px);
  color: #ffffff;
  transition: .5s;
}





/* Right Section - Details - More compact */
.ticket-right {
  width: 100%;
    padding: 20px;
    background: linear-gradient(96deg, #a4352300, #ff220036);
    backdrop-filter: blur(20px);
    position: relative;
    border-radius: 0 0 20px 20px;
    border: 1px solid #a43523;
    overflow: hidden;
    /* animation: gradientSize 3s 
ease-in-out infinite; */
    background-size: 200% 200%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes gradientSize {
    0% {
        background-size: 100% 100%;
    }
    50% {
        background-size: 200% 200%;
    }
    100% {
        background-size: 100% 100%;
    }
}

/* .ticket-right::after{
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    right: 0px;
    bottom: 0px;
    background-image: url(../img/gitex_ab_right.png);
    background-size: 130%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: -1;
    transform-origin: center center;
} */

/* Zoom in and out animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.colonder{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-style: italic;
}
.colonder .colonder-icon{
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.colonder .colonder-icon i{
  font-size: 13px;
  color: #ffffff;
}

.ticket-tt-price h3{
  font-size: 35px;
  font-weight: 700;
}
.price-cut {
  font-size: 23px;
  font-weight: 500;
  position: relative;
  width: fit-content;
}

.price-cut:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF0000;
  transform: rotate(-10deg);
}


.ticket-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 25px;
}

.ticket-subtitle {
  color: #000000;
  margin-bottom: 15px;
  /* Reduced from 20px */
  font-size: 15px;
  text-transform: uppercase;
  /* Reduced from 1rem */
}

.event-details {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6)
  );
  border-radius: 12px;
  /* Reduced from 15px */
  padding: 15px;
  /* Reduced from 20px */
  margin: 15px 0;
  /* Reduced from 20px */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  /* Reduced shadow */
  font-size: 0.85rem;
  /* Added smaller font size */
}

.event-details p {
  margin-bottom: 5px;
  /* Reduced spacing */
}

/* Compact Features Grid */
/* .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
} */

.feature-item {
  border-radius: 12px;
  display: flex;
  transition: all 0.3s ease;
  /* border: 1px solid var(--primary-red); */
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  overflow: hidden;
  position: relative;
  /* Prevent shine from overflowing */
  margin-bottom: 10px;
}

.left-visitor-ticket-out{
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shine effect using ::after */
/* .feature-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.138) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}  */

/* Optional: raise content above shine */
 .feature-item * {
  position: relative;
  z-index: 2;
}

/* Keyframes for shine movement */
@keyframes shineMove {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}



.feature-icon {
  width: 20px;
  min-width: 20px;
  /* Reduced from 40px */
  height: 20px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  /* Reduced from 15px */
  color: var(--primary-color);
  font-size: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  /* Reduced shadow */
}

.feature-text {
  font-weight: 400;
  color: #010101;
  font-size: 16px;
}




.ticket-section {
    width: 70px;
    height: 60px;
    margin-top: -2px;
    /* Background image */
    background-image: url('../img/offer-icon.png');
    background-size: cover;      /* fill section */
    background-position: center; /* center image */
    background-repeat: no-repeat;

    /* Center content */
    display: flex;
    align-items: center;
    justify-content: center;
}
.discount-badge {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 75%, 
        60% 75%, 
        50% 90%, 
        40% 75%, 
        0% 75%
    );

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.discount-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
}
.discount-badge img{
  width: 15px;
  height: 20px;
}


/* Special Effects */
.top-badge {
    color: #000000 !important;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    background: rgb(255, 255, 255);
    padding: 6px 15px;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}



.free-ticket-tag{
    background: linear-gradient(90deg, #e88f00, #ff9000) !important;
    color: white !important;
}

.coming-soon {
  position: relative;
}

.coming-soon::before {
  content: "COMING SOON";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 30px;
  /* Reduced from 20px 40px */
  border-radius: 12px;
  /* Reduced from 15px */
  font-size: 1.2rem;
  /* Reduced from 1.5rem */
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 100;
  backdrop-filter: blur(10px);
  border: 2px solid white;
}

.coming-soon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  z-index: 99;
  border-radius: 15px;
  /* Reduced from 20px */
}

/* Responsive Design for smaller screens */
/* @media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 768px) {
  .ticket-card {
    flex-direction: column;
    min-height: auto;
  }

  .ticket-left,
  .ticket-right {
    width: 100%;
  }

  .ticket-left {
    min-height: 100px;
    background-position: 40% 39%;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
}

/* Enhanced Animations - More subtle */
.ticket-container {
  opacity: 0;
  transform: translateY(30px);
  /* Reduced from 50px */
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ticket-container:nth-child(2) {
  animation-delay: 0.1s;
}

.ticket-container:nth-child(3) {
  animation-delay: 0.2s;
}

.ticket-container:nth-child(4) {
  animation-delay: 0.3s;
}

.ticket-container:nth-child(5) {
  animation-delay: 0.4s;
}

.ticket-container:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-btn{
    min-height: 25px;
    border-radius: 50px;
    background: var(--gradient);
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0px 10px;
    margin-bottom: 10px;
}

/* Compact Header Section */
.page-header {
  text-align: center;
  margin-bottom: 30px;
  /* Reduced from 50px */
  color: white;
}

.page-title {
  font-size: 2.5rem;
  /* Reduced from 3rem */
  font-weight: 700;
  margin-bottom: 10px;
  /* Reduced from 15px */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.1rem;
  /* Reduced from 1.2rem */
  opacity: 0.9;
  margin-bottom: 20px;
  /* Reduced from 30px */
}




.countdown {
  display: flex;
  gap: 3px;
  align-items: center;
  width: auto;
  flex-wrap: wrap;
  margin: 12px 0;
  margin-top: 5px;
}

.countdown-item {
  min-width: auto;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(1 1 1 / 5%), rgb(255 255 255));
  border: 1px solid var(--glass-2);
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.45); */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
}

/* Periodic Shine */
.countdown-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shine 4s linear infinite;
  animation-delay: var(--shine-delay, 0s);
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}



.countdown-value {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  /* background: linear-gradient(90deg, rgba(110, 230, 110, 0.06), rgba(110, 230, 110, 0.02)); */
  background: var(--gradient);
  border: 1px solid rgba(110, 230, 110, 0.06);
  min-width: 54px;
}

.countdown-label {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.9px;
  text-transform: uppercase;
}


.ticket-features {
  background: linear-gradient(96deg, rgb(244 255 241) 0%, rgb(255 255 255 / 10%) 100%);
}

.ticket-type{
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}





/* ticket brown color */

.ticket-bg-brown .ticket-left{
     background-image: url(../img/ticket_bg_brown.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket-bg-brown .ticket-right {
    background: linear-gradient(96deg, #fff4eb5a 0%, #ffe4ba 100%);
    border: 1px solid #623512;
 }

.ticket-bg-brown .feature-item {
    background: linear-gradient(90deg, #ffede0 0%, #ffffff4d 51.77%, #ffffff2e 100%);
    border: 1px solid #ffffff57;
}

.ticket-bg-brown .ticket-right-content p span{
    color: #623512;
}

.ticket-bg-brown .detail-btn{
    background: linear-gradient(0deg, #623512 -0.01%, #c06825 99.99%) !important;
    color: #fff !important;
}

.ticket-bg-brown .ticket-tag{
    background: #623512;
}


  .ticket-bg-brown .ticket-button{
    color: #623512 ;
 }

 .ticket-bg-brown .price{
    color: #ffffff ;
 }

 .ticket-bg-brown .feature-icon{
  background: #623512 !important;
  color: #ffffff !important;
 }

 .ticket-bg-brown .premium-button{
  color: #623512 !important;
 }


  .ticket-bg-brown .price-sub ,.premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-brown .premium-glow .price-sub{
    color: #623512 ;
 }


 .ticket-bg-brown .cm-header{
     background-image: url(../img/ticket_bg_brown.png) !important;
 }
 
/* ticket brown color */



/* ticket purple color */

.ticket-bg-purple .ticket-left{
    background-image: url(../img/ticket_bg_purple.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket-bg-purple .ticket-right {
        background: linear-gradient(96deg, #ffffff 0%, #ffd4e2f0 100%);
    border: 1px solid #2d1018;
 }

.ticket-bg-purple .feature-item {
    background: linear-gradient(90deg, #ffcad02b 0%, #ffffff4d 51.77%, #ffffff2e 100%);
    border: 1px solid #ffffff57;
}

.ticket-bg-purple .ticket-right-content p span{
    color: #59303d;
}

.ticket-bg-purple .detail-btn{
    background: linear-gradient(0deg, #59303d -0.01%, #2c1017 99.99%) !important;
    color: #fff !important;
}

.ticket-bg-purple .ticket-tag{
    background: #59303d;
}


  .ticket-bg-purple .ticket-button{
    color: #59303d ;
 }

 .ticket-bg-purple .price{
    color: #ffffff ;
 }

 .ticket-bg-purple .feature-icon{
  background: #59303d !important;
  color: #ffffff !important;
 }

 .ticket-bg-purple .premium-button{
  color: #59303d !important;
 }


  .ticket-bg-purple .price-sub ,.premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-purple .premium-glow .price-sub{
    color: #59303d ;
 }

  .ticket-bg-purple .cm-header{
     background-image: url(../img/ticket_bg_purple.png) !important;
 }
 
/* ticket purple color */




/* ticket red color */

.ticket-bg-red .ticket-left{
    background-image: url(../img/ticket_bg_red.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket-bg-red .ticket-right {
    background: linear-gradient(96deg, #ffcba35a 0%, #ff944245 100%);
    border: 1px solid #CC0100;
 }

.ticket-bg-red .feature-item {
    background: linear-gradient(90deg, #ffe0e0 0%, #ffffff4d 51.77%, #ffffff2e 100%);
    border: 1px solid #ffffff57;
}

.ticket-bg-red .ticket-right-content p span{
    color: #CC0100;
}

.ticket-bg-red .detail-btn{
    background: linear-gradient(0deg, #CC0100 -0.01%, #fe1c1c 99.99%) !important;
    color: #fff !important;
}

.ticket-bg-red .ticket-tag{
    background: #CC0100;
}


  .ticket-bg-red .ticket-button{
    color: #ffffff ;
 }

 .ticket-bg-red .price{
    color: #ffffff ;
 }

 .ticket-bg-red .feature-icon{
  background: #CC0100 !important;
  color: #ffffff !important;
 }

  .ticket-bg-red .premium-button{
    color: #eb0d0d !important;
  }


  .ticket-bg-red .price-sub ,.premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-red .premium-glow .price-sub{
    color: #ffffff ;
 }

  .ticket-bg-red .cm-header{
     background-image: url(../img/ticket_bg_red.png) !important;
 }
 
 
/* ticket red color */



/* ticket green color */

.ticket-bg-green .ticket-left{
    background-image: url(../img/ticket_bg_green.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket-bg-green .ticket-right {
    background: linear-gradient(96deg, #fafffc 0%, #dcffe8 100%);
    border: 1px solid #25766C;
 }

.ticket-bg-green .feature-item {
    background: linear-gradient(90deg, #eaf9e0 0%, #ffffff4d 51.77%, #ffffff2e 100%);
    border: 1px solid #00763d42;
}

.ticket-bg-green .ticket-right-content p span{
    color: #25766C;
}

.ticket-bg-green .detail-btn{
    background: linear-gradient(0deg, #25766C -0.01%, rgb(9, 97, 54) 99.99%) !important;
    color: #fff !important;
}

.ticket-bg-green .ticket-tag{
    background: #25766C;
}


  .ticket-bg-green .ticket-button{
    color: #fefefe ;
 }

 .ticket-bg-green .price{
    color: #ffffff ;
 }

 .ticket-bg-green .feature-icon{
  background: #25766C !important;
  color: #ffffff !important;
 }

 .ticket-bg-green .premium-button{
  color: #25766C !important;
 }


  .ticket-bg-green .price-sub ,.premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-green .premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-green .cm-header{
     background-image: url(../img/ticket_bg_green.png) !important;
 }
 
 
/* ticket green color */


/* ticket red blue */

/* .ticket-bg-blue .ticket-left{
    background: linear-gradient(0deg, #CC0100d4 -0.01%, #370100 99.99%) !important;
} */

.ticket-bg-blue .ticket-right {
    background: #fff;
    border: 1px solid #E8E4E4;
 }

.ticket-bg-blue .feature-item {
        background: #ffffff00;
    border: none;
}

.ticket-bg-blue .ticket-right-content p span{
    color: #CC0100;
}

.ticket-bg-blue .detail-btn{
    background: linear-gradient(0deg, #1D6AAB -0.01%, #0e416a 99.99%) !important;
    color: #fff !important;
}

.ticket-bg-blue .ticket-tag{
    background: #CC0100;
}


  .ticket-bg-blue .ticket-button{
    color: #CC0100 ;
 }

 .ticket-bg-blue .price{
    color: #000;
 }

 .ticket-bg-blue .feature-icon{
  background: var(--primary-color)  !important;
  color: #ffffff !important;
 }

 .ticket-bg-blue .premium-button{
  color: #ffffff !important;
 }


  .ticket-bg-blue .price-sub ,.premium-glow .price-sub{
    color: #ffffff ;
 }

   .ticket-bg-blue .premium-glow .price-sub{
    color: #ffffff ;
 }

    .ticket-bg-blue .cm-header{
     background-image: url(../img/ticket_bg_blue.png) !important;
 }
 
/* ticket red color */






@media (max-width: 640px) {
  .countdown {
    gap: 0px;
    padding: 0px;
  }
  .countdown-item {
    min-width: 54px;
    padding: 8px;
    border-radius: 10px;
  }
  .countdown-value {
    font-size: 20px;
    min-width: 42px;
    padding: 6px;
  }
  .countdown-label {
    font-size: 10px;
  }
}

.offer-ends-in {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  margin-top: 10px;
  color: #ffffff;
  font-style: italic;
  text-transform: uppercase;

  /* Keep shadow equal in all directions so zoom stays centered */
  text-shadow: 1px 1px 0 #ff0000, -1px 1px 0 #ff0000, 1px -1px 0 #ff0000,
    -1px -1px 0 #ff0000;

  animation: zoomGlow 1.8s infinite ease-in-out;
  transform-origin: center; /* ensures zoom happens from center */
}

@keyframes zoomGlow {
  0% {
    transform: scale(1);
    text-shadow: 1px 1px 0 #ff0000, -1px 1px 0 #ff0000, 1px -1px 0 #ff0000,
      -1px -1px 0 #ff0000;
  }
  50% {
    transform: scale(1);
    text-shadow: 0 0 6px #ff0000, 0 0 10px #ff3b3b, 0 0 15px #ff6b6b;
  }
  100% {
    transform: scale(1);
    text-shadow: 1px 1px 0 #ff0000, -1px 1px 0 #ff0000, 1px -1px 0 #ff0000,
      -1px -1px 0 #ff0000;
  }
}

/* countdown */

/* Ensure 4 tickets fit on 15" screen (optimized for ~1366px width) */
@media (min-width: 1200px) and (max-width: 1400px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .ticket-card {
    min-height: 260px;
    /* Even more compact for medium screens */
  }
}

/* For smaller laptops and 15" screens */
@media (min-width: 1024px) and (max-width: 1366px) {
  .ticket-card {
    min-height: 250px;
    /* Very compact */
  }

  .ticket-left {
    padding: 15px;
  }

  .ticket-right {
    padding: 20px;
  }

  /* .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  } */

  .feature-item {
    padding: 8px;
  }

  .feature-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 991px) {
  .ticket-body {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ticket-title {
    margin-top: 20px;
  }
  .detail-btn{
    display: none;
  }
  .ticket-left::after{
    border-right: none !important;
    border-bottom: 2px dashed #fff;
  }
  .price-tag{
    width: fit-content;
    margin: auto;
  }
}

@media (max-width: 400px) {
  .coming-soon::before {
    width: 250px;
    text-align: center;
  }
  .ticket-right {
    padding: 15px;
    padding-top: 20px;
  }
}

/* Flash the FREE Limited Time price box */
.premium-glow .price-tag {
  position: relative;
  overflow: hidden;
}

.ticket-green .price-tag::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s linear infinite;
}

.premium-glow .price {
  /* animation: textFlash 1s ease-in-out infinite alternate; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.5);
}

.premium-glow .price-sub {
  /* animation: subTextPulse 1.2s ease-in-out infinite; */
  font-weight: 600;
  color: var(--primary-color);
}

@keyframes flashPriceBox {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }

  50% {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3),
      inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes textFlash {
  0% {
    color: rgba(255, 255, 255, 1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

@keyframes subTextPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1111;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 3px !important;
  height: 3px !important;
  background: rgba(255, 255, 255, 0.29);
  animation: particleFloat 15s linear infinite;
}

.particle img{
  width: 5px !important;
  opacity: .2;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.particle:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 60%;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  top: 70%;
  left: 40%;
  animation-delay: 2.5s;
}

.particle:nth-child(7) {
  top: 40%;
  left: 90%;
  animation-delay: 3s;
}

.particle:nth-child(8) {
  top: 90%;
  left: 30%;
  animation-delay: 3.5s;
}

.particle:nth-child(9) {
  top: 50%;
  left: 10%;
  animation-delay: 4s;
}

.particle:nth-child(10) {
  top: 15%;
  left: 50%;
  animation-delay: 4.5s;
}





.left-ribbon {
  width: 200px;
  position: absolute;
  z-index: 99;
  text-align: center;
  color: #000000 !important;
    background: linear-gradient(90deg, #e88f00, #d0ff00) !important;
    padding: 6px 15px;
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
}

.left-ribbon-sticky {
  position: fixed;
}


/* Rotations */






/* ribbon */
.ribbon {
  width: 110px;
  height: 110px;
  overflow: hidden;
  position: absolute;
  z-index: 9;
  
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid  #000000b5;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 185px;
    padding: 9px 0;
    background: #ffffff !important;
    box-shadow: 0 5px 10px rgb(0 0 0 / 33%);
    color: #000;
    font: 700 14px / 1 "Poppins", sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0% { 
        letter-spacing: 0.1em;
        color: #EB1C0D; /* Primary Red */
        text-shadow: 0 0 20px rgba(235, 28, 13, 0.8);
    }
    25% {
        letter-spacing: 0.12em;
        color: #1F6E64; /* Teal */
        text-shadow: 0 0 30px rgba(31, 110, 100, 0.8);
    }
    50% {
        letter-spacing: 0.1em;
        color: #F4C15B; /* Yellow */
        text-shadow: 0 0 20px rgba(244, 193, 91, 0.8);
    }
    75% {
        letter-spacing: 0.12em;
        color: #A878FF; /* Purple */
        text-shadow: 0 0 30px rgba(168, 120, 255, 0.8);
    }
    100% { 
        letter-spacing: 0.1em;
        color: #1F66A6; /* Primary Blue */
        text-shadow: 0 0 20px rgba(31, 102, 166, 0.8);
    }
}


/* top left*/
.ribbon-top-left {
    top: -9px;
    left: -9px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}



/* offer styling */

.price-cut{
  font-size: 35px;
  opacity: .8;
  margin: 2px 0;
}

.price-cut .lin_thrg{
  text-decoration: line-through;
}
/* offer styling */