
body {
    background: #ffffff;
    font-family: 'Antic', sans-serif;
    font-style: normal;
    font-weight: 300;
}

html,body {
      width: 100%;
     overflow-x: hidden;
  }

/*---------------------------------------
    Typorgraphy              
-----------------------------------------*/
h1,h2,h3,h4,h5,h6,
blockquote {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
}

h1 {
    font-size: 4.5rem;
    line-height: 6.5rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    padding-top: 12px;
}

h2 {
  font-size: 30px;
  letter-spacing: 6px;
  padding-bottom: 18px;
  text-transform: uppercase;
}

#trainer h2,
#newsletter h2,
#blog h2,
#price h2 {
  padding-bottom: 2px;
}

blockquote, h3 {
   font-family: 'Lora', sans-serif;
  font-style: italic;
}

h3 {
  line-height: 36px;
}

h4 {
    color: #999;
    letter-spacing: 2px;
    margin-top: 22px;
}

p {
    color: #707070;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
}

a {
  text-decoration: none !important;
  outline: none;
}


/*---------------------------------------
    General               
-----------------------------------------*/
#trainer,
#blog,
#price {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#home,
#trainer,
#newsletter,
#price,
#testimonial,
#blog-header {
  text-align: center;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}



/*---------------------------------------
    Preloader section              
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.sk-spinner-pulse {
  width: 40px;
  height: 40px;
  background-color: #26253a;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s infinite ease-in-out; }

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }




/*---------------------------------------
    Navigation section              
-----------------------------------------*/
.navbar-default {
    background: #ffffff;
    border-bottom: 2px solid #f9f9f9;
    box-shadow: none;
    margin: 0 !important;
}

.navbar-default .navbar-brand {
  color: #505050;
  font-size: 36px;
  font-weight: bold;
  line-height: 50px;
  margin: 0;
}

.navbar-default .navbar-nav li a {
    color: #999;
    font-size: 24px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 0.6px;
    transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav li a:hover {
  color: #000;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #000;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #000;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    color: #000;
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  color: #000;
  background-color: transparent;
}



/*---------------------------------------
    Home section              
-----------------------------------------*/
#home {
    background: 50% 0 repeat-y fixed;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
     display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
     -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
    height: 100vh;
    position: relative;
}

.home-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    z-index: 1;
}
.home-mute-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
}
.home-mute-btn:hover {
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

/* Top fade — blends hero lift-away into video */
#home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 28%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* Bottom fade — blends video into #featured-event (#080808) */
#home::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 32%;
    background: linear-gradient(to top, #080808 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

#home .container {
    position: relative;
    z-index: 2;
}

#home h3 {
  font-family: 'Fira Code', monospace;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C3E41D;
  margin-bottom: 1rem;
  font-style: normal;
}

#home h1 {
  font-family: 'Fira Code', monospace;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2.4rem;
  padding-top: 0;
}

#home .btn {
  background: #26253a;
  border: none;
  border-radius: 0px;
  color: #999;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  padding: 16px 38px;
  margin-top: 28px;
  transition: all 0.4s ease-in-out;
}

#home .btn:hover {
  background: #ffffff;
  color: #26253a;
}

/* Futuristic Events Button */
@keyframes border-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-events {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 32px;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C3E41D;
  text-decoration: none !important;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(195, 228, 29, 0.3);
  border-radius: 2px;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(195,228,29,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-events:hover::before {
  transform: translateX(100%);
}

.btn-events::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: rgba(195, 228, 29, 0.82);
  transition: width 0.4s ease;
}

.btn-events:hover::after {
  width: 100%;
}

.btn-events:hover {
  color: #ffffff;
  border-color: rgba(195, 228, 29, 0.8);
  box-shadow: 0 0 20px rgba(195, 228, 29, 0.15);
  text-decoration: none !important;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-events:hover .btn-arrow {
  transform: translateX(5px);
}



/*---------------------------------------
   Overview  section              
-----------------------------------------*/
#overview {
  padding-top: 14rem;
  padding-bottom: 20rem;
  position: relative;
}

#overview img {
  border: 4px solid #f9f9f9;
  padding: 20px 20px 40px 20px;
}

#overview blockquote {
  background: #ffffff;
  box-shadow: 0px 2px 8px 10px rgba(50, 50, 50, 0.04);
  border-left: 8px solid #26253a;
  word-spacing: 1px;
  letter-spacing: 1px;
  position: absolute;
  font-size: 20px;
  top: 240px;
  left: 80px;
  padding: 62px 52px;
}

#overview .overview-detail {
  position: relative;
  top: 40px;
}

#overview .btn {
  background: transparent;
  border: 4px solid #26253a;
  border-radius: 0px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 46px;
  transition: all 0.4s ease-in-out;
  margin-top: 32px;
}

#overview .btn:hover {
  background: #26253a;
  color: #ffffff;
}



/*---------------------------------------
   Trainer section              
-----------------------------------------*/
#trainer {
  background: #f9f9f9;
}

#trainer h3 {
  letter-spacing: 1px;
  margin-top: 0px;
  padding-bottom: 12px;
}

#trainer img {
  width: 100%;
}

#trainer .trainer-thumb {
  position: relative;
  margin-top: 72px;
  margin-bottom: 32px;
  padding: 0px;
}

#trainer .trainer-thumb .trainer-overlay {
  background: #26253a;
  color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transition: all 0.4s ease-in-out;
}

#trainer .trainer-thumb:hover .trainer-overlay {
  opacity: 0.9;
  transform: scale(0.9);
}

#trainer .trainer-thumb .trainer-overlay h2 {
  padding-bottom: 0px;
}

#trainer .trainer-thumb .trainer-des {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%,-50%);
      -ms-transform:translate(-50%,-50%);
          transform:translate(-50%,-50%);
}



/*---------------------------------------
   Newsletter section              
-----------------------------------------*/
#newsletter {
    background: url('../images/newsletter-bg.jpg') 50% 0 repeat-y fixed;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

#newsletter .newsletter_detail {
  padding-top: 3rem;
}

#newsletter .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 0px;
  box-shadow: none;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.4s ease-in-out;
}

#newsletter .form-control:focus {
  border-bottom-color: #ffffff;
}

#newsletter input {
  height: 45px;
}

#newsletter input[type="submit"] {
  background: #26253a;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  height: 65px;
  margin-top: 42px;
  transition: all 0.4s ease-in-out;
}

#newsletter input[type="submit"]:hover {
  background: #ffffff;
  color: #26253a;
}



/*---------------------------------------
    Blog section              
-----------------------------------------*/
#blog .blog-thumb {
  border: 1px solid #f0f0f0;
  position: relative;
  padding: 60px;
  -wekbit-transition: all 1000ms linear;
  transition: all 1000ms linear;
}

#blog .blog-thumb:hover {
  background: url('../images/blog-thumb.jpg');
   -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
}

#blog .blog-thumb:hover .blog-date, #blog .blog-thumb:hover h3 a,
#blog .blog-thumb:hover #blog-author {color: #ffffff;}

#blog .col-md-6:nth-child(2) .blog-thumb,
#blog .col-md-6:nth-child(3) .blog-thumb {
  margin-top: 72px;
}

#blog .col-md-6:nth-child(4) .blog-thumb,
#blog .col-md-6:nth-child(5) .blog-thumb {
  margin-top: 42px;
}


#blog h3 a {
  color: #606060;
}

#blog .blog-date {
  color: #999;
  font-weight: bold;
}

#blog #blog-author {
  color: #606060;
  letter-spacing: 1px;
}

/* blog single page */

#blog-header {
    background: url('../images/blog-header-bg.jpg') 50% 0 repeat-y fixed;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: bottom center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
     display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
     -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
    height: 50vh;
}

#blog .recent-post h3 {
  padding-bottom: 8px;
  margin-top: 0px;
}

#blog .recent-post img {
  width: 100%;
}

#blog .recent-post .media {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 18px;
  margin-bottom: 42px;
}
#blog .recent-post .media:last-child {
  border-bottom: none;
}

#blog .blog-categories {
  padding-bottom: 40px;
}
#blog .blog-categories h3 {
  padding-bottom: 12px;
}

#blog .blog-categories li {
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 20px;
  list-style: none;
}

#blog .blog-categories li a {
  color: #808080;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#blog h4 {
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 1px;
  padding-top: 0px;
}

#blog h4 a {
  color: #404040;
  transition: all 0.4s ease-in-out;
}
#blog h4 a:hover {
  color: #777;
}

#blog h5 {
  color: #727272;
}

#blog .blog-image {
  padding: 30px 0px;
}

#blog .blog-content span a {
  color: #909090;
  letter-spacing: 0.9px;
}

#blog .blog-content span {
  font-size: 14px;
  font-weight: 400;
  margin-right: 14px;
}

#blog .blog-content blockquote {
  border-left-color: #ffa400;
  margin: 30px 0px;
}

#blog .blog-author {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 22px;
  padding-bottom: 28px;
  margin-top: 42px;
  margin-bottom: 42px;
}
#blog .blog-author h4 {
  padding-top: 12px;
  padding-bottom: 8px;
}

#blog .recent-post .media .media-object,
#blog .blog-author .media .media-object, #blog .blog-comment .media .media-object {
  margin-right: 14px;
}

#blog .blog-comment h3, #blog .blog-comment-form h3 {
  padding-bottom: 18px;
}

#blog .blog-comment .media .media {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  margin-top: 32px;
}

#blog .blog-comment-form {
  border-top: 1px solid #f0f0f0;
  padding-top: 32px;
  margin-top: 72px;
}

#blog .blog-comment-form .col-md-6,
#blog .blog-comment-form .col-md-12, #blog .blog-comment-form .col-md-3 {
  padding-left: 0px;
}

#blog .blog-comment-form .form-control {
  background: transparent;
  border: 2px solid #eeeeee;
  color: #808080;
  box-shadow: none;
  margin-top: 18px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

#blog .blog-comment-form .form-control:focus {
  border-color: #808080;
}

#blog .blog-comment-form input {
  height: 45px;
}

#blog .blog-comment-form input[type="submit"] {
  background: #eeeeee;
  color: #202020;
  font-weight: bold;
}

.blog-clear { clear: both; height: 30px; }

/*---------------------------------------
    Price section              
-----------------------------------------*/
#price {
  background: url('../images/price-bg.jpg') 50% 0 repeat-y fixed;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
}

#price .pricing__item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 330px;
}

#price .pricing__feature-list {
  text-align: left;
}

#price .pricing__action {
  color: inherit;
  border: none;
  background: none;
}

#price .pricing__action:focus {
  outline: none;
}

#price .pricing__item {
  font-size: 20px;
  margin-top: 72px;
  padding: 2em;
  cursor: default;
  color: #fff;
  border: 1px solid #666;
  -webkit-transition: background-color 0.6s, color 0.3s;
  transition: background-color 0.6s, color 0.3s;
}

#price .pricing__item:nth-child(2) {
  border-right: none;
  border-left: none;
}

#price .pricing__item:hover {
  color: #444;
  background: #ffffff;
  border-color: transparent;
}

#price .pricing__title {
  font-size: 2em;
  width: 100%;
  margin: 0;
  padding: 0;
}

#price .pricing__price {
  font-size: 1.45em;
  font-weight: bold;
  line-height: 120px;
  width: 120px;
  height: 120px;
  margin: 1.15em auto 0.3em;
  border-radius: 50%;
  background: #ffffff;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

#price .pricing__item:first-child .pricing__price {
  background: #26253a;
}

#price .pricing__item:nth-child(2) .pricing__price {
  background: #26253a;
}

#price .pricing__item:hover .pricing__price {
  color: #fff;
  background: #222;
}

#price .pricing__feature-list {
  margin: 0;
  padding: 1em 1em 2em 1em;
  font-weight: bold;
  list-style: none;
  letter-spacing: 0.6px;
  line-height: 32px;
  text-align: center;
}

#price .pricing__action {
  font-weight: bold;
  margin-top: auto;
  padding: 18px 48px;
  opacity: 0;
  color: #fff;
  font-size: 20px;
  background: #26253a;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}

#price .pricing__item:hover .pricing__action {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#price .pricing__action:hover,
#price .pricing__action:focus {
  background: #222;
}

@media screen and (max-width: 60em) {
  #price .pricing__item {
    max-width: none;
    width: 100%;
    flex: none;
  }
  #price .pricing__item:nth-child(2) {
    border: 1px solid #fff;
  }
}



/*---------------------------------------
    Testimonial section              
-----------------------------------------*/
#testimonial {
    background: #080808;
    color: #ffffff;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    position: relative;
    overflow: hidden;
}

#testimonial .row {
    margin-left: 0;
    margin-right: 0;
}

#owl-testimonial {
    max-width: 100%;
    overflow: hidden;
}

#testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(195,228,29,0.05) 0%, transparent 70%);
  pointer-events: none;
}

#testimonial .container {
  position: relative;
  z-index: 1;
}

.lc-testimonial-head {
  margin-bottom: 2.4rem;
}

.lc-testimonial-title {
  font-family: 'Fira Code', monospace;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: 0.45rem;
  padding-bottom: 0;
}

#owl-testimonial .item.lc-testimonial-card {
  background: #111111;
  border: 1px solid rgba(195,228,29,0.2);
  border-radius: 14px;
  padding: 2.2rem 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}

#testimonial .fa {
  font-size: 32px;
  padding-bottom: 12px;
  color: #C3E41D;
}

#testimonial h3 {
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

#testimonial h4 {
  margin-top: 18px;
  color: #C3E41D;
  font-family: 'Fira Code', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}



/*---------------------------------------
   Footer section              
-----------------------------------------*/
footer {
  background: #050505;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 6.5rem;
  border-top: 1px solid rgba(195,228,29,0.15);
}

footer .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col-md-4:nth-child(2) {
  margin-left: 9rem;
}

footer .col-md-5 div {
  padding-top: 14px;
}

footer h2 {
  font-family: 'Fira Code', monospace;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

footer h4 {
  margin-top: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

footer h5 {
  color: #C3E41D;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer p {
  color: rgba(255,255,255,0.62);
  font-size: 1.1rem;
  line-height: 1.7;
}

footer .col-md-4:first-child p {
  font-size: 1.3rem;
  line-height: 1.75;
}

.footer-contact {
  margin-top: 2.2rem;
  line-height: 1.8;
}

.footer-contact-label {
  font-family: 'Fira Code', monospace;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: #C3E41D;
  text-decoration: none;
  font-size: 1.05rem;
}

.footer-contact a:hover {
  text-decoration: underline;
}

footer .copyright-text {
  padding-top: 2.6rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.2rem;
  color: rgba(255,255,255,0.5);
}

.copyright-text a {
	color: #C3E41D;
	transition: all 0.4s ease-in-out;
}

.copyright-text a:hover {
	color: #ffffff;
}


/*---------------------------------------
   Social icon             
-----------------------------------------*/
.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    color: rgba(255,255,255,0.72);
    border: 1px solid rgba(195,228,29,0.28);
    background: rgba(255,255,255,0.01);
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    vertical-align: middle;
    margin-right: 6px;
}

.social-icon li a:hover {
    background: #C3E41D;
    color: #000;
    border-color: #C3E41D;
}

.social-icon-tiktok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.72);
    border: 1px solid rgba(195,228,29,0.28);
    background: rgba(255,255,255,0.01);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 42px;
    height: 42px;
    margin-right: 6px;
}
.social-icon-tiktok:hover {
    background: #C3E41D;
    color: #000;
    border-color: #C3E41D;
}



/*---------------------------------------
   Responsive styles            
-----------------------------------------*/
@media (max-width: 980px) {

  #home {
    height: 65vh;
  }

  #overview {text-align: center;}

  #overview blockquote {
    top: 260px;
    padding: 82px;
  } 

  #overview .overview-detail {
    margin-left: 20px;
    top: 72px;
  }

  #blog-header {
    height: 40vh;
  }

}


@media (max-width: 768px) {

  #overview blockquote {
    top: 306px;
    left: 30px;
    right: 10px;
  }

}


@media (max-width: 767px) {

  .navbar-default .navbar-brand {
    line-height: 15px;
  }

  .navbar-default .navbar-nav li a {
    font-size: 20px;
    line-height: 18px;
  }

  #trainer,
  #blog,
  #price {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  #overview {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

}


@media (max-width: 760px) {

  #home {
    height: 100vh;
    padding: 0 1.2rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  #home h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    word-break: break-word;
  }

  #home h3 {
    font-size: clamp(0.72rem, 3.5vw, 1rem);
    letter-spacing: 0.1em;
  }

  #blog-header {
    height: 35vh;
  }

  #blog .blog-comment-form {
    margin-bottom: 42px;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 4.8rem;
  }

  h2 {
    font-size: 24px;
  }

  h3 {font-size: 18px}

  p {font-size: 17px;}

  #overview img {
    margin-bottom: -60px;
  }

  #overview .overview-detail {
    margin-top: 100px;
    top: 0px;
  }

  #price .pricing__action {
    font-size: 13px;
  }

  footer {text-align: center;}

  footer .col-md-5 {
    left: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

}


@media (max-width: 650px) {

  #overview blockquote {
    position: relative;
    top: 0px;
    left: 0px;
  }

}


@media (max-width: 450px) {

  #overview blockquote {
    padding: 32px;
  }

  #overview .overview-detail {
    margin-top: 32px;
  }

}



/* ============================================================
   FEATURED EVENT SECTION
   ============================================================ */
@keyframes lc-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */

@keyframes titleSlam {
  0%   { opacity: 0; transform: translateY(-80px) scale(1.35); filter: blur(12px); }
  60%  { opacity: 1; filter: blur(0); transform: translateY(6px) scale(0.96); }
  78%  { transform: translateY(-3px) scale(1.02); }
  90%  { transform: translateY(2px) scale(0.99); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes logoFlyIn {
  0%   { transform: translate(calc(-50% - 120vw), -50%) scale(0.5) rotate(-280deg); opacity: 0; }
  60%  { opacity: 1; }
  78%  { transform: translate(calc(-50% + 18px), -50%) scale(1.18) rotate(8deg); }
  88%  { transform: translate(calc(-50% - 10px), -50%) scale(0.93) rotate(-4deg); }
  94%  { transform: translate(calc(-50% + 5px), -50%) scale(1.05) rotate(2deg); }
  100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
}

@keyframes eventsSlideDown {
  0%   { opacity: 0; transform: translateY(-90px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes lc-col-left {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lc-col-center {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lc-col-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lc-scan {
  0%   { top: -2px; opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}
@keyframes lc-scan-loop {
  0%   { top: -2px; opacity: 0; }
  4%   { opacity: 0.75; }
  34%  { top: 102%; opacity: 0; }
  100% { top: -2px; opacity: 0; }
}
@keyframes lc-scan-v-loop {
  0%   { left: -2px; opacity: 0; }
  4%   { opacity: 0.25; }
  34%  { left: 102%; opacity: 0; }
  100% { left: -2px; opacity: 0; }
}
@keyframes lc-tick {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.lc-animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lc-animate.lc-in-view {
  opacity: 1;
  transform: translateY(0);
}
.lc-animate-delay-1 { transition-delay: 0.15s; }

.lc-featured-section {
  background: #080808;
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.lc-featured-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(195,228,29,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.lc-featured-inner {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Header */
.lc-section-header {
  margin-bottom: 2.5rem;
}
.lc-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.lc-section-label {
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C3E41D;
  font-weight: 600;
}
.lc-section-title {
  font-family: 'Fira Code', monospace;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-bottom: 0;
  text-transform: uppercase;
}

/* Card */
.lc-card {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  border-radius: 4px 20px 20px 40px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(195,228,29,0.22), 0 0 38px rgba(195,228,29,0.22);
  border: 1px solid rgba(195,228,29,0.28);
  outline: 1px solid rgba(195,228,29,0.06);
  outline-offset: 4px;
  cursor: pointer;
  transition: box-shadow 0.45s ease, outline-color 0.45s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.lc-card:hover {
  box-shadow: 0 32px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(195,228,29,0.5), 0 0 60px rgba(195,228,29,0.18);
  outline-color: rgba(195,228,29,0.18);
  transform: translateY(-4px);
}

/* Info column shimmer on hover */
.lc-col-info {
  position: relative;
  overflow: hidden;
}
.lc-col-info::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(195,228,29,0.04) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0s;
  pointer-events: none;
}
.lc-card:hover .lc-col-info::after {
  transform: translateX(100%);
  transition: transform 0.7s ease;
}

/* Title color on hover — no size/spacing change */
.lc-feat-title {
  transition: color 0.4s ease;
}
.lc-card:hover .lc-feat-title {
  color: rgba(255,255,255,0.95);
}

/* Deco corners spin on hover */
.lc-deco {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
}
.lc-card:hover .lc-deco {
  transform: rotate(90deg) scale(1.3);
  opacity: 1;
}

/* Countdown block glow on hover */
.lc-card:hover .lc-cnum {
  text-shadow: 0 0 20px rgba(195,228,29,0.4);
}
.lc-cnum {
  transition: text-shadow 0.4s ease;
}

/* Column entrance animations — triggered by JS adding .lc-in-view to card */
.lc-card.lc-in-view .lc-col-info {
  animation: lc-col-left 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.lc-card.lc-in-view .lc-col-countdown {
  animation: lc-col-center 0.65s cubic-bezier(0.22,1,0.36,1) 0.12s both;
}
.lc-card.lc-in-view .lc-col-img {
  animation: lc-col-right 0.65s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}

/* Scan line 1 — primary horizontal, loops every 5s */
.lc-img-wrap::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(195,228,29,0.65) 50%, transparent 95%);
  top: -2px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}
.lc-card.lc-in-view .lc-img-wrap::after {
  animation: lc-scan-loop 5s ease-in-out infinite;
}

/* Scan line 2 — secondary horizontal, offset by half cycle */
.lc-img-wrap::before {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 1.5px;
  background: linear-gradient(90deg, transparent 10%, rgba(195,228,29,0.35) 50%, transparent 90%);
  top: -2px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}
.lc-card.lc-in-view .lc-img-wrap::before {
  animation: lc-scan-loop 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* Scan line 3 — vertical sweep (left → right) */
.lc-img-overlay::after {
  content: '';
  position: absolute;
  top: 0; height: 100%; width: 1.5px;
  background: linear-gradient(180deg, transparent 5%, rgba(195,228,29,0.2) 50%, transparent 95%);
  left: -2px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}
.lc-card.lc-in-view .lc-img-overlay::after {
  animation: lc-scan-v-loop 8s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* Scan line 4 — thin rapid horizontal, different timing */
.lc-img-overlay::before {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 15%, rgba(195,228,29,0.2) 50%, transparent 85%);
  top: -2px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}
.lc-card.lc-in-view .lc-img-overlay::before {
  animation: lc-scan-loop 5s ease-in-out infinite;
  animation-delay: -1.1s;
}

/* Col 1: Info */
.lc-col-info {
  background: #0C0C0C;
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.lc-deco {
  position: absolute;
  font-style: normal;
  color: rgba(195,228,29,0.25);
  pointer-events: none;
  font-size: 0.95rem;
  line-height: 1;
}
.lc-deco-tl { top: 1rem;    left: 1rem; }
.lc-deco-tr { top: 1rem;    right: 1rem; }
.lc-deco-bl { bottom: 1rem; left: 1rem; }
.lc-deco-br { bottom: 1rem; right: 1rem; }

.lc-feat-label-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  color: #C3E41D;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.lc-feat-title {
  font-family: 'Fira Code', monospace;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.lc-btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #C3E41D;
  background: transparent;
  color: #C3E41D;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  align-self: flex-start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, background 0.3s;
  padding: 0.8rem 1.8rem;
}
.lc-btn-ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #C3E41D;
  transform: translateX(-100%);
  transition: transform 0.40s ease;
  z-index: 0;
}
.lc-btn-ticket:hover::before { transform: translateX(0); }
.lc-btn-ticket:hover { color: #000; text-decoration: none; }
.lc-btn-ticket span, .lc-btn-ticket svg { position: relative; z-index: 1; }

/* Col 2: Countdown */
.lc-col-countdown {
  background: #111111;
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.lc-starts-label {
  font-family: 'Fira Code', monospace;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.lc-countdown {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}
.lc-cblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.lc-cnum {
  font-family: 'Fira Code', monospace;
  font-size: clamp(2.2rem, 3.9vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: #C3E41D;
  min-width: 2ch;
  text-align: center;
  transition: transform 0.15s;
}
.lc-cnum.lc-tick { animation: lc-tick 0.3s ease; }
.lc-cblock:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.85rem;
  top: 50%;
  transform: translateY(-58%);
  color: rgba(195,228,29,0.75);
  font-family: 'Fira Code', monospace;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}
.lc-cblock:first-child::after {
  display: none;
}
.lc-cunit {
  font-family: 'Fira Code', monospace;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.lc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 1.4rem;
}
.lc-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lc-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Antic', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
}
.lc-meta-item svg { flex-shrink: 0; color: #C3E41D; }

/* Col 3: Image */
.lc-col-img {
  background: #0C0C0C;
  padding: 12px 12px 12px 6px;
  display: flex;
}
.lc-img-wrap {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.lc-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lc-img-wrap:hover img { transform: scale(1.04); }
.lc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .lc-card { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Responsive: mobile ── */
@media (max-width: 600px) {
  .lc-featured-section { padding: 4rem 0 5rem; }
  .lc-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border-radius: 12px;
  }
  .lc-col-img {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 10px 10px 4px 10px;
    border-right: none;
  }
  .lc-img-wrap { min-height: 180px; }
  .lc-col-info {
    grid-column: 1;
    grid-row: 2;
    padding: 1.6rem 1.2rem;
    border-right: 1px solid rgba(255,255,255,0.04);
  }
  .lc-col-countdown {
    grid-column: 2;
    grid-row: 2;
    padding: 1.6rem 1.2rem;
    border-right: none;
  }
  .lc-countdown { gap: 0.6rem; flex-wrap: wrap; }
  .lc-cnum { font-size: 2.2rem; }
  .lc-feat-title { font-size: 1.6rem; margin-bottom: 1.2rem; }
  .lc-btn-ticket { font-size: 0.7rem; padding: 0.5rem 0.9rem; }
}

/* ============================================================
   PAST EVENTS SECTION
   ============================================================ */
.pe-section {
  background: #050505;
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.pe-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 0; right: 0;
  height: 75%;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(195,228,29,0.13) 0%, rgba(195,228,29,0) 70%);
  -webkit-mask: linear-gradient(to bottom,
    rgba(0,0,0,0.3) 0%, black 10%,
    black 55%, transparent 100%
  );
  mask: linear-gradient(to bottom,
    rgba(0,0,0,0.3) 0%, black 10%,
    black 55%, transparent 100%
  );
  pointer-events: none;
}
.pe-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #080808 0%, rgba(8,8,8,0) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Porto + Algarve: follow a pe-section directly, need a taller softer top fade */
.pe-section + .pe-section::after {
  height: 220px;
  background: linear-gradient(to bottom, #050505 0%, rgba(5,5,5,0) 100%);
}
.pe-section + .pe-section::before {
  -webkit-mask: linear-gradient(to bottom,
    transparent 0%, black 30%,
    black 55%, transparent 100%
  );
  mask: linear-gradient(to bottom,
    transparent 0%, black 30%,
    black 55%, transparent 100%
  );
}
.pe-inner {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.pe-header { margin-bottom: 2rem; }
.pe-title {
  font-family: 'Fira Code', monospace;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 0.5rem;
  padding-bottom: 0;
}
.pe-flag { font-style: normal; font-size: 0.85em; }
.pe-city { color: #C3E41D; }

/* Grid */
.pe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Card */
.pe-card {
  background: #0f0f0f;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.pe-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(195,228,29,0.15);
  border-color: rgba(195,228,29,0.2);
}

/* Card image */
.pe-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.pe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pe-card:hover .pe-card-img img { transform: scale(1.06); }
.pe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
  display: block;
}
.pe-card-tag {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  background: rgba(195, 228, 29, 0.782);
  border: none;
  padding: 0.34rem 0.95rem;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
}

/* Card body */
.pe-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.pe-card-title {
  font-family: 'Fira Code', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  line-height: 1.3;
}
.pe-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pe-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Antic', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1;
}
.pe-card-meta svg { flex-shrink: 0; color: #C3E41D; opacity: 0.8; }

/* Animate */
.pe-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease var(--pe-delay, 0s), transform 0.55s ease var(--pe-delay, 0s);
}
.pe-animate.lc-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .pe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .pe-section { padding: 2.5rem 0 2rem; }
  .pe-grid { grid-template-columns: repeat(2, 1fr); }
}

.pe-flag-img {
  display: inline-block;
  height: 0.65em;
  width: auto;
  vertical-align: middle;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  position: relative;
  top: -0.05em;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.lc-sep {
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2px 5%;
}
.lc-sep-line {
  flex: 1;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195,228,29,0.22), transparent);
}
.lc-sep-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(195,228,29,0.18);
  border-radius: 50%;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lc-sep-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   PAST EVENTS — SHOW MORE
   ============================================================ */
.pe-extra { display: none; }

/* Grid + button wrapper */
.pe-grid-wrap {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1.2rem;
}
.pe-grid-wrap .pe-grid { flex: 1; min-width: 0; }

/* Button wrapper */
.pe-show-more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  margin-top: 0.8rem;
}
.pe-show-more {
  background: transparent;
  border: 1px solid rgba(195,228,29,0.4);
  color: #C3E41D;
  font-family: 'Fira Code', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .pe-show-more-wrap {
    margin-top: 1.4rem;
  }
  .pe-show-more {
    font-size: 0.86rem;
    padding: 0.85rem 1.9rem;
  }
}
.pe-show-more .pe-btn-icon { transition: transform 0.3s; }
.pe-show-more.is-expanded .pe-btn-icon { transform: rotate(180deg); }
.pe-show-more:hover {
  border-color: #C3E41D;
  color: #fff;
  background: rgba(195,228,29,0.07);
}

/* =====================================================
   EVENT MODAL
===================================================== */
.em-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(0px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease, backdrop-filter 0.28s ease;
  padding: 16px;
}
.em-overlay.em-open {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(7px);
}
.em-modal {
  position: relative;
  width: min(660px, 100%);
  max-height: 88vh;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.93) translateY(20px);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.28s ease;
}
.em-overlay.em-open .em-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.em-scroll {
  overflow-y: auto;
  max-height: 88vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.em-close {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #aaa; font-size: 20px; line-height: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.em-close:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

/* Banner */
.em-banner { position: relative; height: 260px; overflow: hidden; cursor: pointer; }
.em-banner-slides { position: absolute; inset: 0; }
.em-banner-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.em-banner-slide.em-bs-active { opacity: 1; }
.em-banner-dots {
  position: absolute; bottom: 12px; right: 16px;
  display: flex; gap: 6px; z-index: 5;
}
.em-banner-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.em-banner-dot.em-bd-active { background: #C3E41D; transform: scale(1.4); }
.em-banner-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0e0e0e 0%, rgba(14,14,14,0.25) 55%, transparent 100%);
}
.em-banner-info {
  position: absolute; bottom: 22px; left: 26px; right: 54px;
}
.em-tag-badge {
  display: inline-block;
  background: #C3E41D; color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 9px;
}
.em-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700; color: #fff;
  margin: 0; line-height: 1.2;
  font-family: 'Fira Code', monospace;
}

/* Body */
.em-body { padding: 20px 26px 32px; }
.em-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.em-meta-item {
  display: flex; align-items: center; gap: 7px;
  color: #888; font-size: 13px;
}
.em-meta-item svg { stroke: #C3E41D; flex-shrink: 0; }

/* Form */
.em-form-title {
  font-size: 13px; font-weight: 600;
  color: #bbb; letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.em-form { display: flex; flex-direction: column; gap: 10px; }
.em-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  color: #e0e0e0; font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.em-input:focus { border-color: rgba(195,228,29,0.5); }
.em-input::placeholder { color: #555; }
.em-consent {
  display: flex; align-items: flex-start; gap: 9px;
  color: #666; font-size: 12px; cursor: pointer;
  line-height: 1.5; margin-top: 2px;
}
.em-consent input { margin-top: 3px; accent-color: #C3E41D; flex-shrink: 0; }
.em-consent a {
  color: #C3E41D;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.em-consent a:hover { color: #d4f04a; }
.em-submit {
  background: #C3E41D; color: #000;
  border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s, transform 0.15s;
}
.em-submit:hover:not(:disabled) { opacity: 0.85; transform: translateY(-1px); }
.em-submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* Past label */
.em-past-label {
  display: flex; align-items: center; gap: 8px;
  color: #555; font-size: 13px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

/* Success state */
.em-success { text-align: center; padding: 8px 0 4px; }
.em-success-icon {
  width: 46px; height: 46px;
  background: rgba(195,228,29,0.08);
  border: 1px solid rgba(195,228,29,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #C3E41D; font-size: 20px;
}
.em-success h4 { color: #e0e0e0; font-size: 15px; margin: 0 0 6px; font-family: inherit; }
.em-success p  { color: #666; font-size: 13px; margin: 0 0 18px; }
.em-cal-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid rgba(195,228,29,0.35);
  border-radius: 8px;
  color: #C3E41D; font-size: 13px; font-weight: 600;
  padding: 10px 18px; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.em-cal-btn:hover { background: rgba(195,228,29,0.07); color: #C3E41D; }

/* Sections */
.em-section { margin-bottom: 20px; }
.em-section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #555;
  margin: 0 0 8px;
}
.em-description {
  font-size: 16px; color: #999; line-height: 1.65; margin: 0;
}
.em-after-party {
  font-size: 13px; color: #bbb; margin: 0;
  display: flex; align-items: center; gap: 6px;
}
.em-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 20px 0;
}

/* Gallery */
.em-gallery {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.em-gallery::-webkit-scrollbar { display: none; }
.em-gal-img {
  height: 140px; min-width: 200px;
  object-fit: cover; border-radius: 8px;
  scroll-snap-align: start; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Route map */
.em-map-wrap { border-radius: 10px; overflow: hidden; }
.em-map { width: 100%; height: 220px; border: none; display: block; }

/* Sponsors ticker */
.em-ticker-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.em-ticker {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: emTicker 18s linear infinite;
}
.em-ticker:hover { animation-play-state: paused; }
@keyframes emTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.em-ticker-item {
  display: flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.em-ticker-item:hover { border-color: rgba(195,228,29,0.25); }
.em-ticker-name {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #888;
}
.em-ticker-logo {
  height: 22px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.5);
  transition: filter 0.2s;
}
.em-ticker-item:hover .em-ticker-logo { filter: brightness(0) invert(0.75); }

/* Maps */
.em-maps-row { display: flex; gap: 12px; flex-wrap: wrap; }
.em-map-card { flex: 1; min-width: 200px; }
.em-map-card-label {
  font-size: 11px; color: #555; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin: 0 0 6px;
}
.em-map { width: 100%; height: 200px; border: none; display: block; border-radius: 10px; }
.em-route-map { display: block; height: 240px; width: auto; max-width: 100%; border-radius: 8px; cursor: zoom-in; transition: transform 0.2s, opacity 0.2s; }
.em-route-map:hover { transform: scale(1.03); opacity: 0.88; }

/* ── Event Recap ──────────────────────────────── */
.em-recap { margin: 0 -26px 24px; overflow: hidden; }

.em-recap-hd { padding: 22px 26px 16px; text-align: center; }
.em-recap-label-row { display: flex; align-items: center; gap: 14px; }
.em-recap-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(195,228,29,0.28), transparent); }
.em-recap-lbl { font-family: 'Fira Code', monospace; font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase; color: #C3E41D; font-weight: 700; white-space: nowrap; }

.em-recap-mosaic { display: grid; gap: 3px; height: 340px; background: #000; }
.em-recap-mosaic[data-count="1"] { grid-template-columns: 1fr; }
.em-recap-mosaic[data-count="2"] { grid-template-columns: 3fr 2fr; }
.em-recap-mosaic[data-count="3"] { grid-template-columns: 3fr 2fr; grid-template-rows: 1fr 1fr; }
.em-recap-mosaic[data-count="3"] .em-recap-hero { grid-row: 1 / span 2; }

.em-recap-cell {
  position: relative; overflow: hidden;
  animation: emRecapCellIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes emRecapCellIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
.em-recap-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  cursor: zoom-in;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: brightness(0.9);
}
.em-recap-cell:hover .em-recap-img { transform: scale(1.06); filter: brightness(1); }
.em-recap-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
}
.em-recap-hero:hover::after { opacity: 1; }

.em-recap-more {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.58);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fira Code', monospace; font-size: 1.5rem; font-weight: 700;
  color: #fff; cursor: zoom-in; letter-spacing: 0.05em;
  transition: background 0.25s ease;
}
.em-recap-more:hover { background: rgba(0,0,0,0.38); }

.em-recap-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.em-recap-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 13px 6px;
  border-right: 1px solid rgba(255,255,255,0.05);
  animation: emRecapStatIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
}
.em-recap-stat:last-child { border-right: none; }
@keyframes emRecapStatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.em-recap-stat-val { font-family: 'Fira Code', monospace; font-size: 1.05rem; font-weight: 700; color: #C3E41D; line-height: 1; margin-bottom: 4px; white-space: nowrap; }
.em-recap-stat-lbl { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: #555; }

.em-recap-video-section {
  padding: 0;
  margin-top: 4px;
}
.em-recap-video-section .em-section-label {
  padding: 0 26px;
  margin-bottom: 12px;
}
.em-recap-video-scroll-wrap {
  position: relative;
}
.em-recap-video-scroll-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, #0d0d0d);
  pointer-events: none;
  z-index: 1;
}
.em-recap-video-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 26px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.em-recap-video-row::-webkit-scrollbar { display: none; }

.em-recap-vid {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s;
}
.em-recap-vid:hover {
  transform: translateY(-3px);
  border-color: rgba(195,228,29,0.18);
}
.em-recap-vid--reel {
  width: 160px;
  aspect-ratio: 9/16;
  max-height: 285px;
}
.em-recap-vid iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Lightbox */
.em-lightbox {
  position: fixed; inset: 0; z-index: 11000;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.em-lightbox.em-lb-open { opacity: 1; pointer-events: all; }
.em-lb-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 6px;
  transition: opacity 0.15s ease;
}
.em-lb-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; width: 36px; height: 36px;
  color: #ccc; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.em-lb-close:hover { color: #fff; }
.em-lb-prev, .em-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%; width: 48px; height: 48px;
  color: #fff; font-size: 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.em-lb-prev { left: 14px; }
.em-lb-next { right: 14px; }
.em-lb-prev:hover, .em-lb-next:hover { background: rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  .em-lb-prev, .em-lb-next { width: 44px; height: 44px; font-size: 26px; }
  .em-lb-prev { left: 8px; }
  .em-lb-next { right: 8px; }
}

/* Hero wrapper */
#hero-wrapper { position: relative; }

/* Static badge — inside hero, no border */
#hpb-static {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 9997;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}
#hpb-static.hpb-visible { opacity: 1; pointer-events: all; }
.hpb-static-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hpb-static-logo {
  height: 18px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s;
}
#hpb-static a:hover .hpb-static-logo { opacity: 1; }

/* Pill badge — fixed, other pages */
#hero-powered-by {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 20000;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#hero-powered-by.hpb-visible { opacity: 1; pointer-events: all; }
.hpb-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hpb-link { display: flex; align-items: center; }
.hpb-logo {
  height: 20px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75; transition: opacity 0.2s;
}
.hpb-link:hover .hpb-logo { opacity: 1; }

/* Ticker grab cursor */
.em-ticker-wrap { cursor: grab; }
.em-ticker-wrap:active { cursor: grabbing; }

/* Clickable gallery images */
.em-gal-img { cursor: zoom-in; transition: transform 0.2s, opacity 0.2s; }
.em-gal-img:hover { transform: scale(1.03); opacity: 0.88; }

/* Clickable cards */
.pe-card, .lc-card { cursor: pointer; }
.pe-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pe-card:hover { transform: translateY(-3px); }

/* Mobile/tablet: below grid, centered */
@media (max-width: 900px) {
  .pe-grid-wrap { gap: 1.5rem; }
  .pe-show-more-wrap { width: 100%; }
  .pe-show-more { margin: 0 auto; }
}
