.join-hero{
  min-height: calc(42vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.8rem 0 0.8rem;
}

.join-hero-inner{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 3.2rem 2.4rem 2.6rem;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 20px 55px rgba(0,0,0,0.34),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}

.join-hero-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,0.06), transparent 38%),
    radial-gradient(circle at 50% 0%, rgba(135, 22, 22, 0.10), transparent 45%);
  pointer-events: none;
}

.join-hero-inner::after{
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.join-title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  color: #f5f5f5;
  text-shadow:
    0 0 16px rgba(255,255,255,0.05),
    0 0 30px rgba(110, 0, 0, 0.12);
}

.join-sub{
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 1.35rem auto 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.9vw, 1.16rem);
  line-height: 1.9;
  color: #cdcdcd;
  letter-spacing: 0.08em;
}

.join-tags{
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.join-tags span{
  padding: 0.6rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #efefef;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.join-tags span:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.divider{
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0.92;
}

.divider::before,
.divider::after{
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.16), transparent);
}

.divider-symbol{
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.soft-divider{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.join-panel{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.join-panel:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.join-video-label{
  display: inline-block;
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #d2d2d2;
  opacity: 0.92;
}

.join-video-wrap{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.55);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.26),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.join-video{
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 68vh;
  background: #000;
}

.join-copy{
  max-width: 760px;
  margin: 1.6rem auto 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: #d0d0d0;
}

.join-btn{
  margin: 1.7rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 260px;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  color: #f5f5f5;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.join-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.3),
    0 0 20px rgba(255,255,255,0.05);
}

.join-btn span:first-child{
  font-size: 1rem;
  transform: translateY(-1px);
}

.join-features{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Premium card styling */

.feature-card{
  position: relative;
  padding: 1.8rem 1.45rem 1.6rem;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08),
    transparent 70%
  );
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
}

.feature-card:hover::before{
  opacity:1;
}

.feature-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin:0 auto 1rem;
  font-size:1.5rem;
  color:#ededed;
  opacity:.92;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.feature-card:hover .feature-icon{
  border-color:rgba(255,255,255,0.18);
}

.feature-card h2{
  margin:0.3rem 0 0.85rem;
  font-family:'Cinzel', serif;
  font-size:1.08rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#f5f5f5;
}

.feature-card p{
  margin:0;
  font-family:'Cinzel', serif;
  font-size:0.95rem;
  line-height:1.9;
  letter-spacing:0.04em;
  color:#c9c9c9;
}

@media (max-width:900px){
  .join-features{
    grid-template-columns:1fr;
  }

  .join-panel{
    padding:1.35rem;
  }

  .join-hero-inner{
    padding:2.4rem 1.2rem 2rem;
  }

  .join-sub{
    letter-spacing:0.05em;
    line-height:1.8;
  }
}

@media (max-width:640px){
  .join-hero{
    min-height:auto;
    padding:1rem 0 0.5rem;
  }

  .join-title{
    font-size:clamp(2.4rem,12vw,3.8rem);
  }

  .join-tags{
    gap:0.55rem;
  }

  .join-tags span{
    width:calc(50% - 0.35rem);
    text-align:center;
    font-size:0.72rem;
    padding:0.7rem 0.7rem;
  }

  .join-video{
    min-height:210px;
    max-height:48vh;
  }

  .join-copy{
    font-size:0.96rem;
    line-height:1.85;
  }

  .join-btn{
    width:100%;
    min-width:0;
    padding:0.95rem 1rem;
    font-size:0.84rem;
    letter-spacing:0.12em;
  }
}

@media (max-width:420px){
  .join-tags span{
    width:100%;
  }

  .join-video{
    min-height:190px;
  }
}
