/* ==========================================================================
   FRAP GLOBAL STYLESHEET (Obsidian Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&family=Inter:wght@400;500;700;800&display=swap');

/* --- Reset & Core Layout --- */
body, html, #page, #content, .site, .site-content, #primary, #main, 
.site-header, .site-footer, .site-inner, .content-area, main, .entry-content {
  background-color: #020203 !important;
  background: #020203 !important;
  color: #9ea2ae !important;
  font-family: 'Inter', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .elementor-heading-title {
  font-family: 'Outfit', sans-serif !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

/* Hide default theme header/footer if they get generated */
.site-header, .site-footer, #masthead, #colophon {
  display: none !important;
}

/* --- Shared Badges & Glows --- */
.frap-badge {
  background: rgba(255, 42, 58, 0.08);
  border: 1px solid rgba(255, 42, 58, 0.2);
  color: #ff2a3a;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 9px;
  padding: 4px 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

.frap-badge-editorial {
  background-color: rgba(255, 42, 58, 0.08);
  border: 1px solid rgba(255, 42, 58, 0.2);
  color: #ff2a3a;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 9px;
  padding: 4px 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

.frap-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.frap-glow-1 {
  top: -10%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 42, 58, 0.05) 0%, transparent 70%);
}

.frap-glow-2 {
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 42, 58, 0.03) 0%, transparent 70%);
}


/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
.frap-hdr {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(2, 2, 3, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 68px;
}

.frap-hdr-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
}

.frap-hdr-badge {
  background: #ffffff;
  color: #020203;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 8px;
  padding: 3px 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.frap-hdr-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff !important;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.frap-hdr-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.frap-hdr-link {
  color: #4e5058 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.frap-hdr-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff2a3a;
  transition: width 0.3s ease;
}

.frap-hdr-link:hover {
  color: #ffffff !important;
}

.frap-hdr-link:hover::after,
.frap-hdr-link.active::after {
  width: 100%;
}

.frap-hdr-link.active {
  color: #ffffff !important;
}

.frap-hdr-cta {
  background: #ff2a3a;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 24px;
  text-decoration: none !important;
  border: 1px solid #ff2a3a;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.frap-hdr-cta:hover {
  background: transparent;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 42, 58, 0.15);
}

@media (max-width: 1024px) {
  .frap-hdr {
    padding: 0 24px;
  }
  .frap-hdr-nav {
    gap: 18px;
  }
  .frap-hdr-link {
    font-size: 9px;
  }
}


/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.frap-ftr {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px;
}

.frap-ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.frap-ftr-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.frap-ftr-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frap-ftr-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 !important;
}

.frap-ftr-desc {
  color: #4e5058;
  font-size: 12px;
  line-height: 1.7;
  max-width: 300px;
}

.frap-ftr-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.frap-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e5058 !important;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.frap-social:hover {
  border-color: #ff2a3a;
  color: #ff2a3a !important;
}

.frap-ftr-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px !important;
}

.frap-ftr-col-link {
  display: block;
  color: #4e5058 !important;
  font-size: 12px;
  text-decoration: none !important;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.frap-ftr-col-link:hover {
  color: #ffffff !important;
}

.frap-ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.frap-ftr-copy {
  color: #2e3038;
  font-size: 11px;
  margin: 0;
}

.frap-ftr-tag {
  background: rgba(255, 42, 58, 0.06);
  border: 1px solid rgba(255, 42, 58, 0.12);
  color: #ff2a3a;
  font-family: monospace;
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .frap-ftr {
    padding: 40px 24px;
  }
  .frap-ftr-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .frap-ftr-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ==========================================================================
   PAGE SPECIFIC LAYOUTS
   ========================================================================== */

/* --- Standard Page Container --- */
.frap-page {
  padding: 60px 40px;
  background: #020203;
  min-height: 100vh;
}

.frap-page-header {
  text-align: center;
  margin-bottom: 56px;
}

.frap-page-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase;
  margin: 12px 0 0 !important;
  line-height: 1.1 !important;
}

.frap-page-sub {
  color: #9ea2ae;
  font-size: 14px;
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.6;
}

/* --- Card Grid --- */
.frap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Column Grids (used on Accueil/Homepage categories) --- */
.frap-column-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Custom Cards --- */
.frap-card, .frap-card-wp {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.frap-card::before, .frap-card-wp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff2a3a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.frap-card:hover, .frap-card-wp:hover {
  border-color: rgba(255, 42, 58, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.frap-card:hover::before, .frap-card-wp:hover::before {
  transform: scaleX(1);
}

.frap-card-img, .frap-card-img-wp {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.frap-card-img img, .frap-card-img-wp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.frap-card:hover .frap-card-img img, 
.frap-card-wp:hover .frap-card-img-wp img {
  transform: scale(1.06);
}

.frap-card-label, .frap-card-label-wp {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 2, 3, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 8px;
  padding: 4px 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.frap-card-body, .frap-card-body-wp {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frap-card-title, .frap-card-title-wp {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 1.3 !important;
  margin: 0 !important;
  transition: color 0.3s;
}

.frap-card:hover .frap-card-title, 
.frap-card-wp:hover .frap-card-title-wp {
  color: #ff2a3a !important;
}

.frap-card-excerpt, .frap-card-excerpt-wp {
  color: #9ea2ae;
  font-size: 12.5px;
  line-height: 1.6;
  margin: 0;
}

.frap-card-foot, .frap-card-foot-wp {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: #4e5058;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}


/* ==========================================================================
   WIDGETS & FUNCTIONAL COMPONENTS
   ========================================================================== */

/* --- News Chaudes Ticker --- */
.frap-news-ticker {
  background: #0a0a0c;
  border: 1px solid rgba(255, 42, 58, 0.15);
  padding: 14px 28px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.frap-ticker-label {
  background: #ff2a3a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 8px;
  padding: 4px 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.frap-ticker-text {
  color: #9ea2ae;
  font-size: 12px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* --- Fight Map Page Layout --- */
.frap-map-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  padding: 60px 40px;
  background: #020203;
  min-height: 100vh;
}

.frap-map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frap-sidebar-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  margin: 8px 0 0 0 !important;
  line-height: 1.1 !important;
}

.frap-search-input {
  width: 100%;
  background-color: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  font-size: 13px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.frap-search-input:focus {
  outline: none;
  border-color: #ff2a3a;
}

.frap-filter-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #4e5058;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.frap-filter-select {
  width: 100%;
  background-color: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  font-size: 13px;
  color: #9ea2ae;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.frap-filter-select:focus {
  outline: none;
  border-color: #ff2a3a;
}

.frap-gyms-title {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px 0 !important;
}

.frap-gym-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.frap-gym-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.frap-gym-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
  margin: 0 !important;
}

.frap-gym-city {
  font-size: 11px;
  color: #4e5058;
  margin-top: 4px;
  display: block;
}

.frap-gym-badge {
  background-color: rgba(255, 42, 58, 0.08);
  border: 1px solid rgba(255, 42, 58, 0.15);
  color: #ff2a3a;
  font-family: monospace;
  font-size: 9px;
  padding: 3px 10px;
  white-space: nowrap;
}

.frap-gym-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.frap-gym-tag {
  background-color: rgba(255, 255, 255, 0.02);
  color: #9ea2ae;
  font-size: 9px;
  font-family: monospace;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- Fight Map Canvas, Pins & CTAs --- */
.frap-map-canvas {
  background-color: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.frap-map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.frap-pin {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.frap-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff2a3a;
  border: 2px solid #fff;
  box-shadow: 0 0 12px #ff2a3a;
  transition: transform 0.2s;
}

.frap-pin:hover .frap-pin-dot {
  transform: scale(1.4);
}

.frap-pin-tooltip {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d11;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.frap-pin:hover .frap-pin-tooltip {
  opacity: 1;
}

.frap-pin-name {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.frap-pin-city {
  display: block;
  font-size: 10px;
  color: #4e5058;
  margin-top: 3px;
}

.frap-pin-pros {
  display: block;
  font-size: 10px;
  color: #9ea2ae;
  font-family: monospace;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.frap-map-cta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(2, 2, 3, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  max-width: 320px;
  z-index: 5;
}

.frap-map-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px 0 !important;
}

.frap-map-cta-text {
  color: #4e5058;
  font-size: 10px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.frap-cta-btn {
  background: #ff2a3a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

.frap-cta-btn:hover {
  background: #fff;
  color: #020203 !important;
}


/* --- Club Privé Application Form --- */
.frap-form-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.frap-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.frap-form-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase;
  margin: 12px 0 0 !important;
  line-height: 1.1 !important;
}

.frap-form-sub {
  color: #9ea2ae;
  font-size: 13.5px;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.frap-form-card {
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.frap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.frap-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frap-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #4e5058;
  text-transform: uppercase;
}

.frap-input, .frap-select, .frap-textarea {
  width: 100%;
  background: #020203;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 15px 18px;
  font-size: 13px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.frap-input:focus, .frap-select:focus, .frap-textarea:focus {
  outline: none;
  border-color: #ff2a3a;
}

.frap-textarea {
  resize: none;
}

.frap-submit-btn {
  background: #ff2a3a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}

.frap-submit-btn:hover {
  background: #fff;
  color: #020203;
  box-shadow: 0 8px 24px rgba(255, 42, 58, 0.2);
}

.frap-success {
  background: #08080a;
  border: 1px solid #ff2a3a;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.frap-success-icon {
  font-size: 56px;
  color: #ff2a3a;
  line-height: 1;
}

.frap-success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 !important;
}

.frap-success-text {
  color: #9ea2ae;
  font-size: 13px;
  max-width: 380px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .frap-form-row {
    grid-template-columns: 1fr;
  }
  .frap-form-card {
    padding: 30px;
  }
}


/* --- Hype Tracker Table & Homepage Styles --- */
.frap-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: #08080a;
  margin: 20px 0;
}

.frap-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.frap-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4e5058;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.frap-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  vertical-align: middle;
  color: #9ea2ae;
}

.frap-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
}

.frap-rank {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: #ff2a3a;
}

.frap-name-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.frap-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.04);
}

.frap-fighter-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.frap-fighter-team {
  font-size: 11px;
  color: #4e5058;
}

.frap-trend-up {
  color: #00ff66;
  font-weight: bold;
}

.frap-trend-down {
  color: #ff2a3a;
  font-weight: bold;
}

.frap-hype-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: inline-block;
}


/* --- Elementor specific theme styles overrides --- */
.elementor-element-710e44bc {
  background-color: #020203 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.elementor-element-710e44bc .elementor-heading-title {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase;
}

.elementor-element-710e44bc .elementor-button {
  background-color: #ff2a3a !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  border-radius: 0px !important;
  padding: 12px 28px !important;
  text-transform: uppercase !important;
  border: 1px solid #ff2a3a !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.elementor-element-710e44bc .elementor-button:hover {
  background-color: #ffffff !important;
  color: #020203 !important;
  border-color: #ffffff !important;
}

.frap-nav {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.frap-nav .nav-item {
  color: #4e5058 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  position: relative;
  padding: 6px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.frap-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff2a3a;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.frap-nav .nav-item:hover, .frap-nav .nav-item.active {
  color: #ffffff !important;
}

.frap-nav .nav-item:hover::after {
  width: 100%;
}

