@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --body_bg: #171412;
    --gold: #ebb82d;
    --gold-muted: #fddc58;
    --bg-secondary: #1e1e1e;
    --border-secondary: #333;
    --button-bg: #ffffff1a;
    --button-bg-hover: #ffffff33;
}

/* All texts on the website will apply this font */
* {
    font-family: Poppins, Arial;
}
.coinss{
    width: 330px;
    margin-top: 10px;
    
}
.soon_img{
    width: 300px;
    margin-top: 10px;
    
}
.coins_content{
    position: absolute;
    /* width: 100%; */
    
}
.coins_text{
    padding: 7px 28px;
    text-align: left;
    
}
.light{
    color: #bbb;
}
.soon_content{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;

}
.intro_btn_group{
    display: flex;
    width: 100%;
    flex-direction: column;

}
.gold-box {
  width: 100%;
  height: 420px;
  background: #111; /* dark background so the shadow shows well */
  color: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 16px 0px;

  /* Inner shadow */
  box-shadow: inset 0 0 30px #724306;
}

.img_bg{
    width: 100%;
    position: relative;
}
.img_bg .text{
    width: 100%;
    position: absolute;
    top: 0;
    bottom:  0;
    text-align: center;
}

.img_bg img{
    width: 100%;
    height: 300px;
}


body {
    background-color: var(--body_bg);
    background-image: linear-gradient(to bottom,
            rgba(226, 197, 116, 0.139),
            rgba(23, 20, 18, 1) 100px);
    background-repeat: no-repeat;
    background-size: 100% 150px;
    padding: 16px;
    padding-top: 70px;
    color: white;
}

.gold_txt {
    color: var(--gold);
}

.gold_heading {
    color: var(--gold-muted);
    font-weight: 600;
}
.intro h1{
    font-size: 37px;
}
.soon{
   border: 1px solid #cc6612;
   font-size: 9px;
   color: var(--gold-muted);
   padding: 1px 3px;
   border-radius: 60px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: #cc66124c;
   letter-spacing: 0.6px;
}
.unlock{
   border: 1px solid #cc6612;
   font-size: 9px;
   color: var(--gold-muted);
   border-radius: 60px;
   padding: 0.5px 7px;
   margin-left: 3px;
   background-color: black;


}

.features_div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro_btn {
    background: var(--gold);
    width: 100%;
    padding: 9px 5px;
    border: none;
    border-radius: 26px;
    margin-top: 22px;
    font-size: 14px;
    color: black;
}
.all_btn {
    background: rgba(255, 255, 255, 0.077);
    border: 1px solid rgba(255, 255, 255, 0.243);
    width: 100%;
    padding: 9px 5px;
    border-radius: 26px;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.745);
}
.disabled_btn {
    background: rgba(255, 255, 255, 0.077);
    /* border: 1px solid rgba(255, 255, 255, 0.243); */
    border: none;
    width: 100%;
    padding: 9px 5px;
    border-radius: 26px;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.338);
}

.nav_btn {
    background: var(--gold);
    width: 100%;
    padding: 9px 15px;
    border: none;
    border-radius: 26px;
    font-size: 10px;
    color: black;

    /* 3D border effect */
    border-top: 2px solid black;   /* lighter top rim */
    border-bottom: 2.5px solid rgba(0, 0, 0, 0.529);     /* darker bottom rim */
    transition: all 0.15s ease-in-out;
}

.nav_btn:active {
    transform: translateY(2px);
    border-bottom: 2px solid rgb(0, 0, 0);  /* shrink bottom rim */
}

.nav_btn h6 {
    font-size: 10px;
    margin: 0;
    padding: 0;
    letter-spacing: 0.3px;
}




.logo_con {
    width: 42px;
    overflow: hidden;
}

.nav_bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 4px 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coin {
    height: 350px;
    margin-top: 20px;
    background-color: transparent !important;
    transform: translateZ(0);
}

.coin_animation {
    overflow: hidden;
    background-color: transparent !important;
}


.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    display: block;
  }

  .video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }

.contents_container {
    padding: 5px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px 1px;

}


.content_icon {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 11px;
    margin: 5px;
    border-radius: 6px;
    width: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.contents_container .title {
    color: white;
    font-weight: 600;
    text-align: center;
    margin-top: 6px;

}

.contents_container .description {
    color: gray;
    text-align: center;
}

.wallets_container {
    display: flex;
    flex-direction: column;
}


.wallets_container .wallet {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 3px 0px;
    background-color: rgba(245, 245, 245, 0.023);
    border-radius: 7px;
    border: 1px solid rgba(245, 245, 245, 0.152);
}

.wallets_container .wallet_arrow {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 7px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid rgba(245, 245, 245, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.wallets_container .wallet_img {
    background-color: rgba(255, 255, 255, 0.06);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 7px;
    border: 1px solid rgba(245, 245, 245, 0.2);
}

.wallets_container .name {
    font-size: 15px;
    margin: 5px;
    font-weight: 500;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    padding: 2rem;
    color: #f4f4f4;
}


.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 500;
    color: #ebb82d;
}

.footer-column a,
.footer-column button {
    font-size: 12px;
    padding: 0;
    border: none;
    background: transparent;
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column button:hover {
    color: #fff;
}

.footer-column button:disabled,
.footer-column .disabled-button {
    cursor: not-allowed;
    color: #777;
}

.badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #333;
    color: rgba(255, 255, 255, 0.845);
    border: 1px solid #ccc;
}



.disclaimer-container {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 2rem 1rem;
}

.disclaimer-list {
    list-style: decimal;
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.disclaimer-list li+li {
    margin-top: 1rem;
}

.disclaimer-container p {
    margin-bottom: 1.5rem;
}

.disclaimer-container a {
    color: #ebb82d;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.disclaimer-container a:hover {
    color: #fff;
}


.accordion-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #1e1e1e;
    color: #fff;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #2b2b2b;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.accordion-content p {
    padding: 0.75rem 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ccc;
}

.accordion-header[aria-expanded="true"] svg {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.other{
   margin-top: 80px;
}

.bridge-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bridge-card img {
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
    color: transparent;
}



/* Content stack */
.bridge-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
}

/* Description */
.bridge-description {
    font-size: 1rem;
    font-weight: 500;
    color: #ccc;
}



/* Highlighted part */
.bridge-description .highlight {
    color: var(--gold);
}

.bridge-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    width: 100%;
}


.bridge-button-disabled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    background-color: var(--button-bg);
    border: 1px solid var(--button-bg);
    color: gray;
    box-shadow: none;
  }
  
.bridge-button:hover {
    background-color: var(--button-bg-hover);
    border-color: #ffd657;
    box-shadow: none;

}


:root {
    --border-color: #333;
    --bg-secondary: #1e1e1e;
    --text-secondary: #ccc;
    --text-tertiary: #888;
    --pill-color: #bbb;
    --pill-hover: #fff;
  }
  
  /* Wrapper */
  .report-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    font-family: sans-serif;
    margin-top: 20px;

  }
  
  /* Header */
  .report-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .report-title {
    font-weight: 600;
    color: var(--text-secondary);
  }
  
  .report-year {
    font-size: 0.875rem;
    color: var(--text-tertiary);
  }
  
  /* Links Grid */
  .report-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    padding: 1.5rem 1rem;
  }
  
  /* Pill + icon pair */
  .report-entry {
    display: flex;
    align-items: center;
  }
  
  /* Pill-style link */
  .report-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pill-color);
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    transition: color 0.2s ease;
  }

 
  
  
  .report-pill:hover {
    color: var(--pill-hover);
  }
  
  /* PDF filler icon */
  .pdf-filler-icon {
    display: inline-block;
    margin-left: 10px;
    width: 9px;
    background-color: rgb(255, 166, 0);
    height: 22px;
    font-size: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }
  
  .pdf-filler-icon img {
    width: 100%;
    background: none;
  }
  

  .report-links {
    display: flex;
    flex-wrap: wrap;
  }
  

  

  