html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: 'Arsenal', Arial, sans-serif;
  background: #000;
  overflow-x: hidden;
}
body {
  width: 100vw;
  min-height: 100vh;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.1);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.logo-image {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 44px;
  margin-bottom: 44px;
  height: 250px;
  width: auto;
  max-width: 45vw;
  max-height: 37vh;
  filter: drop-shadow(0 8px 32px rgba(30,22,17,0.28));
  pointer-events: auto;
  user-select: none;
  transition: all 0.3s;
}
.invite-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: 52px;
  margin-bottom: 52px;
  font-family: 'Arsenal', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #874e25;
  background: #fff;
  border: none;
  border-radius: 44px;
  padding: 15px 44px;
  box-shadow: 0 4px 22px rgba(80,46,15,0.12);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.15s, color 0.13s;
  letter-spacing: 0.5px;
  pointer-events: auto;
  outline: none;
  transition: all 0.3s;
}
.invite-btn:hover {
  background: #ffe7d2;
  color: #a35e29;
  box-shadow: 0 10px 38px rgba(80,46,15,0.18);
}

@media (max-width: 700px) {
  .hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
    z-index: 2;
  }
  .logo-image {
    position: static;
    margin: 0 0 38px 0;
    max-width: 90vw;
    max-height: 35vh;
    height: 120px;
    width: auto;
    display: block;
  }

  
  .invite-btn {
  position: static;
  margin: 0;
  border: none;
  border-radius: 44px;
  display: block;
  padding: 18px 28vw;
  box-shadow: 0 6px 28px rgba(80,46,15,0.18);
  letter-spacing: 0.5px;
  pointer-events: auto;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  width: auto;
  min-width: 180px;
  max-width: 90vw;
}
.logo-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: visible;
  padding: 5px;
}

.logo-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 10px);
  height: calc(82% + 10px);
  transform: translate(-5px, -5px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.logo-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
}

.live-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 0;       
}

.live-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;     
}

@media (max-width:700px){
  .live-watch-btn{
    font-size:1.3rem;
    padding:14px 20vw;
    max-width:90vw;
  }
}

@media (min-width:701px){
  .live-watch-btn{display:none!important}
}

.live-wrapper.fb-live   { height: 100vh; display: flex; justify-content: center; }
.live-wrapper.fb-live iframe {
  height: 100%;
  width: auto;          
  aspect-ratio: 16 / 9; 
}