

.top-live-ticker {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  background: #2f2f2f;
  overflow: hidden;
  position: relative;
  margin-top: 68px;
  margin-bottom: 0px;
}

.live-badge {
  background: #ff1f1f;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  min-width: 58px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
  animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.ticker-wrap {
  flex: 1;
  height: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-track {
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
}

.ticker-item {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  color: #ffe600;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, left;
}

.ticker-item.run {
  animation: singleTickerSlide 20s linear forwards;
}

@keyframes singleTickerSlide {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@media (max-width: 768px) {
  .top-live-ticker {
    height: 28px;
  }

  .live-badge {
    min-width: 52px;
    height: 28px;
    font-size: 12px;
  }

  .ticker-wrap,
  .ticker-track {
    height: 28px;
  }
}



/* =========================
JOIN THE COMMUNITY SECTION
========================= */

.community-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#12511b;
  border:1px solid #1b1b1b;
  border-radius:14px;
  padding:18px 22px;
  margin-top:20px;
  flex-wrap:wrap;
}

.community-left h2{
  color:#ffffff;
  font-size:22px;
  margin:0;
  font-weight:800;
}

.community-left p{
  color:#d3d3d3;
  margin-top:4px;
  font-size:14px;
}

.community-right{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.community-box .community-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:170px;
  height:52px;
  padding:0 22px;
  border-radius:14px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  color:#fff;
  transition:0.25s ease;
  box-sizing:border-box;
}

.community-box .community-btn svg{
  width:18px;
  height:18px;
}

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

.community-box .telegram-btn:hover{
  background:#1a8ac1;
}

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

.community-box .facebook-btn:hover{
  background:#0f63d1;
}

 .community-left h2{
    font-size: 28px;
  font-family:"Aptos Display", sans-serif;
  font-weight:700;
  }

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

  .community-left h2{
    font-size: 28px;
  font-family:"Aptos Display", sans-serif;
  font-weight:700;
  }

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





/* =========================
Basic info and vid box
========================= */

.basic-section{
  background:#000;
  padding:40px 16px;
  display:flex;
  justify-content:center;
}

.basic-grid{
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.basic-card{
  background:#0d0d0d;
  border-radius:12px;
  padding:25px;
  border:1px solid #1f1f1f;
  min-width:0;
}

.basic-title{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-family:"Aptos",sans-serif;
  font-weight:700;
  color:#fff;
  margin-bottom:20px;
  line-height:1.4;
}

.basic-title .bar{
  width:5px;
  min-width:5px;
  height:22px;
  background:#12511b;
  border-radius:3px;
  margin-top:2px;
}

.basic-table{
  width:100%;
  border-collapse:collapse;
  color:#ddd;
  font-family:"Aptos",sans-serif;
  table-layout:fixed;
}

.basic-table td{
  padding:10px;
  border-bottom:1px solid #222;
  word-wrap:break-word;
  overflow-wrap:break-word;
  vertical-align:top;
}

.basic-table td:first-child{
  width:42%;
}

.quick-note{
  color:#888;
  margin-top:10px;
  font-size:13px;
}

.video-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
  flex-wrap:wrap;
}

.video-head .title{
  color:#fff;
  font-family:"Aptos",sans-serif;
  font-weight:700;
  line-height:1.4;
}

.video-head .tag{
  background:#12511b;
  padding:4px 10px;
  border-radius:6px;
  font-size:12px;
  color:#ffffff;
  white-space:nowrap;
}

.video-box{
  width:100%;
  max-width:100%;
  aspect-ratio: 16 / 9;
  background:#000;
  border-radius:10px;
  overflow:hidden;
  position:relative;
}

.video-box video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:10px;
  background:#000;
}

.video-tip{
  margin-top:10px;
  color:#888;
  font-size:13px;
}

@media (max-width: 991px){
  .basic-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 576px){
  .basic-section{
    padding:28px 12px;
  }

  .basic-grid{
    gap:18px;
  }

  .basic-card{
    padding:18px;
  }

  .basic-title{
    font-size:15px;
  }

  .basic-table td{
    padding:9px 8px;
    font-size:13px;
  }

  .basic-table td:first-child{
    width:40%;
  }

  .video-head .title{
    font-size:15px;
  }

  .video-tip,
  .quick-note{
    font-size:12px;
  }
}





/* =========================
Announcement
========================= */

.announcement-section{
  padding: 40px 16px 56px;
  background: #050B18;
  display: flex;
  justify-content: center;
}

.announcement-box{
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 28px;
  overflow: hidden;
  background-image: url("assets/announcement-bg.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.announcement-overlay{
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.09) 0px,
      rgba(255,255,255,0.09) 16px,
      transparent 16px,
      transparent 42px
    ),
    linear-gradient(
      180deg,
      rgba(5, 20, 5, 0.18) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.42) 100%
    );
  pointer-events: none;
}

.announcement-content{
  position: relative;
  padding: 42px 34px;
}

.announcement-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.announcement-header .line{
  width: 6px;
  min-width: 6px;
  height: 52px;
  background: #01411C;
  border-radius: 10px;
}

.announcement-header h2{
  color: #fff;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
  font-style: italic;
  text-transform: uppercase;
}

.announcement-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.announcement-card{
  background: rgba(53, 77, 17, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  padding: 34px 32px;
  min-width: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 30px rgba(0,0,0,0.18);
}

.announcement-card h3{
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.announcement-card p{
  margin-top: 26px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  font-size: 18px;
  overflow-wrap: break-word;
}

.fund-target{
  margin-top: 34px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.26);
  padding: 20px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.fund-target span{
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  text-transform: uppercase;
}

.fund-target strong{
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.fund-label{
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fund-counter{
  margin-top: 22px;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 3px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: rgba(0,0,0,0.28);
  padding: 26px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.fund-note{
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 95%;
}

/* tablet */
@media (max-width: 991px){
  .announcement-grid{
    grid-template-columns: 1fr;
  }

  .announcement-content{
    padding: 28px 22px;
  }

  .announcement-header .line{
    height: 40px;
  }

  .announcement-header h2{
    font-size: 26px;
  }

  .announcement-card{
    padding: 24px 22px;
  }

  .announcement-card h3{
    font-size: 22px;
  }

  .announcement-card p{
    font-size: 16px;
    margin-top: 18px;
  }

  .fund-counter{
    font-size: 48px;
    padding: 20px 22px;
  }

  .fund-target strong{
    font-size: 18px;
  }

  .fund-note{
    font-size: 15px;
  }
}

/* mobile */
@media (max-width: 576px){
  .announcement-section{
    padding: 24px 14px 36px;
  }

  .announcement-box{
    border-radius: 26px;
  }

  .announcement-overlay{
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.08) 0px,
        rgba(255,255,255,0.08) 14px,
        transparent 14px,
        transparent 34px
      ),
      linear-gradient(
        180deg,
        rgba(6, 22, 6, 0.15) 0%,
        rgba(0, 0, 0, 0.22) 45%,
        rgba(0, 0, 0, 0.42) 100%
      );
  }

  .announcement-content{
    padding: 24px 16px 20px;
  }

  .announcement-header{
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 4px;
  }

  .announcement-header .line{
    width: 5px;
    min-width: 5px;
    height: 54px;
    border-radius: 8px;
  }

  .announcement-header h2{
    font-size: 26px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.5px;
  }

  .announcement-grid{
    gap: 18px;
  }

  .announcement-card{
    padding: 24px 18px;
    border-radius: 24px;
    background: rgba(60, 84, 19, 0.34);
  }

  .announcement-card h3{
    font-size: 20px;
    line-height: 1.25;
  }

  .announcement-card p{
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .fund-target{
    width: 100%;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    gap: 10px;
  }

  .fund-target span{
    font-size: 13px;
  }

  .fund-target strong{
    font-size: 16px;
  }

  .fund-label{
    font-size: 14px;
    margin-bottom: 4px;
  }

  .fund-counter{
    margin-top: 14px;
    font-size: 34px;
    letter-spacing: 2px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .fund-note{
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.45;
    max-width: 100%;
  }
}





/* Footer */
body{
  font-family:"Plus Jakarta Sans", sans-serif;
  background:#050B18;
}

/* ===== FOOTER ===== */
.custom-footer{
  background:#050B18;
  border-top:1px solid rgba(255,255,255,0.05);
  padding:24px 0 110px; /* extra bottom space because of floating nav */
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  padding:0 20px;
  flex-wrap:wrap;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.footer-logo{
  height:42px;
  width:auto;
  display:block;
}

.footer-text{
  color:#7f8793;
  font-size:14px;
  border-left:1px solid rgba(255,255,255,0.12);
  padding-left:12px;
  line-height:1.2;
}

.footer-license{
  max-width:360px;
  width:100%;
  text-align:center;
  margin-left:auto;
}

.footer-license h4{
  color:#fff;
  font-size:22px;
  font-weight:800;
  margin:0 0 14px;
  line-height:1.2;
}

.footer-license .gcb-logo{
  display:block;
  width:120px;
  max-width:100%;
  height:auto;
  margin:0 auto 14px;
}

.footer-license p{
  margin:0;
  color:#c6ccd4;
  font-size:14px;
  line-height:1.5;
}

/* MOBILE FOOTER */
@media (max-width: 768px){
  .custom-footer{
    padding:22px 0 120px;
  }

  .footer-container{
    flex-wrap:nowrap;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
  }

  .footer-left{
    width:48%;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .footer-logo{
    height:32px;
  }

  .footer-text{
    border-left:none;
    padding-left:0;
    font-size:11px;
  }

  .footer-license{
    width:48%;
    margin-left:0;
    text-align:right;
  }

  .footer-license h4{
    font-size:15px;
    margin-bottom:8px;
  }

  .footer-license .gcb-logo{
    width:85px;
    margin:0 0 8px auto;
  }

  .footer-license p{
    font-size:11px;
    line-height:1.45;
  }
}

@media (max-width: 480px){
  .footer-container{
    padding:0 14px;
    gap:10px;
  }

  .footer-logo{
    height:28px;
  }

  .footer-license .gcb-logo{
    width:72px;
  }

  .footer-license h4{
    font-size:13px;
  }

  .footer-license p{
    font-size:10px;
  }
}	


/* ===== FLOATING NAV ===== */
.floating-nav{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
width:95%;
max-width:700px;

background:rgba(5,11,24,0.9);
backdrop-filter:blur(12px);

border-radius:40px;
padding:10px 20px;

display:flex;
justify-content:space-between;
align-items:center;

border:1px solid rgba(255,255,255,0.1);
box-shadow:0 10px 40px rgba(0,0,0,0.5);

z-index:999;
}


/* LEFT / RIGHT LINKS */
.nav-left,
.nav-right{
display:flex;
gap:15px;
align-items:center;
}

.nav-left a,
.nav-right a{
display:flex;
align-items:center;
gap:5px;
color:white;
text-decoration:none;
font-size:10px;
font-weight:900;
text-transform:uppercase;
}

.material-symbols-outlined{
font-size:20px;
}


/* ===== CENTER ===== */
.nav-center{
display:flex;
flex-direction:column;
align-items:center;
position:relative;
top:-20px;
}


/* REGISTER BUTTON */
.register-btn{
background:linear-gradient(135deg,#01411C,#B8860B);
color:white;
border:none;
padding:6px 16px;
border-radius:50px;
font-weight:900;
cursor:pointer;
box-shadow:0 4px 20px rgba(255,215,0,0.3);
border:2px solid #01411C;
}


/* PAYMENT LOGOS */
.payment-logos{
display:flex;
gap:8px;
margin-top:5px;
}

.payment-logos img{
height:30px;
opacity:0.9;
}


/* TELEGRAM BUTTON */
.telegram-btn{
background:linear-gradient(135deg,#01411C,#B8860B);
padding:6px 12px;
border-radius:20px;
color:white;
font-size:10px;
font-weight:900;
text-decoration:none;
}


/* MOBILE FIX */
@media(max-width:768px){

.nav-left span:nth-child(2),
.nav-right span:nth-child(2){
display:none;
}

.floating-nav{
padding:10px;
}

.register-btn{
padding:5px 12px;
font-size:12px;
}

}



/* ===== SLIDER ===== */

.slider {
  width: 100%;
  max-width: 2319px;
  height: 489px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Slides container */
.slides {
  display: flex;
  transition: transform 0.5s ease;
}

/* Each slide */
.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 489px;
  object-fit: cover;
  display: block;
}

/* ===== DOTS ===== */

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .slider {
    height: 180px;
  }

  .slide img {
    height: 180px;
  }
}


