

:root{
  --max: 1100px;
  --pad: 16px;
  --radius: 16px;
  --border: rgba(255,255,255,0.12);
  --glass: rgba(0,0,0,0.35);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
}

/* Under-slide wrapper */
.under-slide{
  width: 100%;
  max-width: 1100px;
  margin: 14px auto 0;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Community section */
.community-box{
  width: 100%;
  margin: 0 auto 18px;
  background: #0f781f;
  border-radius: 22px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.community-left h2{
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.community-left p{
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.community-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.community-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: transform .15s ease;
}

.community-btn:hover{
  transform: translateY(-1px);
}

.telegram-btn{
  background: #229ED9;
}

.facebook-btn{
  background: #1877F2;
}

/* Two-column layout */
.basic-grid{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.basic-card{
  border: 1px solid var(--border);
  background: var(--glass);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.pad{
  padding: 16px;
}

/* Section title */
.basic-title{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 16px;
}

.basic-title .bar{
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
}

/* Table */
.basic-table{
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 14px;
}

.basic-table td{
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
}

.basic-table tr:last-child td{
  border-bottom: none;
}

.basic-table td:first-child{
  width: 42%;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  text-align: left;
}

.basic-table td:last-child{
  text-align: right;
  font-weight: 700;
}

.quick-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

/* Video section */
.video-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
}

.video-head .title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.video-head .tag{
  font-size: 10px;
  font-weight: 900;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-box{
  width:100%;
  min-height:280px;   /* increases video box height */
  aspect-ratio:16/9;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.25);
}

.video-box video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-tip{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 850px){
  .community-box{
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }

  .community-left h2{
    font-size: 28px;
  }

  .community-right{
    justify-content: center;
  }

  .basic-grid{
    grid-template-columns: 1fr;
  }

  .basic-table td:first-child{
    width: 140px;
  }
}



