.elementor-8258 .elementor-element.elementor-element-a7cf2a2{width:var( --container-widget-width, 105.21% );max-width:105.21%;--container-widget-width:105.21%;--container-widget-flex-grow:0;}body.elementor-page-8258 .container{max-width:1360px;}body.elementor-page-8258 .elementor-section.elementor-section-boxed>.elementor-container{max-width:1360px;}/* Start custom CSS for html, class: .elementor-element-a7cf2a2 *//* VARIABLES */
:root {
  --dark-bg: #121212;
  --dark-900: #1b1b1b;
  --light-100: #fff;
  --green: #107C10;
  --green-light: #28a428;
  --text-400: #ccc;
}

/* GLOBAL RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--light-100);
  line-height:1.5;
}
a { text-decoration:none; color:inherit; }

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  background: rgba(27,27,27,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 72px;
}
.logo img {
  height: 32px;
}
.site-nav ul {
  display: flex;
  gap: 24px;
  margin-left: 48px;
}
.site-nav a {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--light-100);
  transition: color .2s;
}
.site-nav a:hover {
  color: var(--green);
}
.btn-join {
  margin-left: auto;
  padding: 8px 16px;
  background: var(--green);
  border-radius: 4px;
  font-weight:600;
  transition: background .2s;
}
.btn-join:hover {
  background: var(--green-light);
}

/* HERO */
.hero {
  background: var(--dark-900);
  padding: 80px 0;
}
.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-text {
  max-width: 40%;
}
.hero-text h1 {
  font-size: 4rem;
  line-height:1.1;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-400);
}
.btn-hero {
  display: inline-block;
  padding: 12px 32px;
  background: var(--green);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight:600;
  transition: background .2s;
}
.btn-hero:hover {
  background: var(--green-light);
}
.hero-text small {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-400);
}
.hero-text small a {
  color: var(--green);
}

/* overlapping panels */
.hero-panels {
  display: flex;
  margin-left: auto;
  position: relative;
}
.hero-panels .panel {
  width: 300px;
  height: 600px;
  background-size: cover;
  background-position: center;
  margin-left: -100px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}
.hero-panels .panel:nth-child(1) { z-index: 2; }
.hero-panels .panel:nth-child(2) { z-index: 3; }
.hero-panels .panel:nth-child(3) { z-index: 4; }
.hero-panels .panel:nth-child(4) { z-index: 5; }
.hero-panels .panel:hover {
  transform: translateY(-16px);
}

/* DISCOVER */
.discover {
  padding: 60px 0;
  background: var(--dark-900);
}
.discover h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

/* horizontal carousel */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.carousel::-webkit-scrollbar { display: none; }

.card {
  flex: 0 0 auto;
  width: 200px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: transform .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}
.card img {
  display: block;
  width: 100%;
  height: auto;
}
.card .info {
  padding: 12px;
}
.card .info strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.card .info small {
  color: var(--text-400);
  font-size: 0.85rem;
}

/* Explore All */
.explore-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--light-100);
  font-size: 1rem;
  font-weight:600;
  cursor: pointer;
}
.explore-all:hover {
  background: var(--green-light);
}/* End custom CSS */