/* ========================================
   FONT FACES
   ======================================== */
@font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-300italic - latin */
  @font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: italic;
    font-weight: normal;
    src: url('../fonts/poppins-v20-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  @font-face{
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-500italic - latin */
@font-face{
    font-display: swap; 
    font-family: 'Poppins';
    font-style: italic;
    font-weight: bold;
    src: url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'); 
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --light-green-color: #5eef8e;
    --red-color: #e53935;
    --green-color: #003330;
    --dark-green: #1b3238;
    --bg-green: #182528;
    --light-grey-color: #d0d0d0;
    --white-color: #ffffff;
    --dark-grey-color: #999;
    --font-color: #d6d6d8;
    --light-background-color: #2e2c2c;
    --background-color: #1b1b1b;
}
.light-green{
    color: var(--light-green-color)
}
.white{
    color: var(--white-color)
}
.center{
    text-align: center;
}
.black{
    color: var(--background-color)
}
h1{
    color: var(--white-color);
    font-size: 2em;
    margin: 10px auto;
}
h2{
    color: var(--white-color);
    font-size: 1.6em;
    margin: 8px auto;
}
a{
    text-decoration: none;
}
body{
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--background-color);
    margin: 0 auto;
    padding: 0 ;
    width: 100%;
    position: relative;
}
.error{
    width: 100%;
    background: transparent;
    border: 1px solid rgb(230, 1, 1);
    color: rgb(230, 1, 1);
    font-weight: bold;
    padding: 5px 10px;
    margin: 5px auto;
    text-align: center;
}
.success{
    max-width: 100%x;
    background: transparent;
    border: 1px solid rgb(1, 243, 102);
    color: rgb(1, 243, 102);
    font-weight: bold;
    padding: 5px 10px;
    margin: 5px auto;
    text-align: center;
    position: relative;
}
.close{
    position:absolute;
    width: 40px;
    height: 30px;
    top: 0;
    right: 5px;
    color: rgb(255, 255, 255);
    padding:auto auto;
    text-align:center;
    font-size: 1.5em ;
    cursor: pointer;
 }
  h2{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}
 /**    Login Styling   **/
.login-container{
    background: var(--white-color);
    width: 100%;
    max-width: 460px;
    padding: 40px 50px;
    border-radius: 8px;
    margin: 0px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.login-container2{
    background: var(--white-color);
    width: 100%;
    max-width: 460px;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 5% auto 30px
}
.login-container2 h2{
    color: var(--background-color);
}
.subtitle{
    font-size: 15px;
    margin-bottom: 32px;
    text-align: center;
}
.input-group{
    margin-bottom: 20px;
}
.password-field{
    position: relative;
}
.password-toggle{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    font-size: 1em;
}
.password-toggle:hover{
    color: #1b1b1b;
}
.input-bar{
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--background-color);
    background: var(--white-color);
    border: 1.5px solid var(--light-grey-color);
    border-radius: 4px;
    transition: all 0.2s;
}
.input-bar:focus {
    outline: none;
    border-color: var(--background-color);
    box-shadow: 0 0 0 3px rgba(0, 23, 21, 0.1);
}
.input-bar::placeholder {
    color: var(--dark-grey-color);
}
.textarea-bar{
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--background-color);
    background: var(--white-color);
    border: 1.5px solid var(--light-grey-color);
    border-radius: 4px;
    transition: all 0.2s;
    resize: vertical;
    min-height: 150px;
}
.forgot-password {
    text-align: center;
    margin: 16px 0 24px;
}
.forgot-password a, .forgot-password p{
    color: #001715;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.forgot-password a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.submit-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--background-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.submit-button:hover {
    background: var(--green-color);
}
.submit-button:active {
    transform: scale(0.98);
}
/***********************************/
/**        Home Styling         **/  
.hero-banner{
    position: relative;
    height: 600px;
    overflow: hidden;
    padding: 0 auto;
    margin: 0 auto; 
    background: var(--main);
}

.bg-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    filter: brightness(60%);
}

/* .banner-elements{
    position: relative;
    z-index: 2;
    height: 100%;
} */
.banner-elements{
    margin: 0px auto;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}
.banner-elements .left{
  width: 100%;
  background: transparent;
  color: var(--white-color);
  align-self: center;
  text-align: left;
}
.banner-elements .left h2{
  font-size: 3.2em;
  line-height: 1.2em;
  margin: 10px auto;
  color: var(--light-green-color);
  text-transform: uppercase;
  text-align: left;
}
.banner-elements .left p{
  font-size: 1.2em;
  line-height: 1.8em;
  color: var(--white-color);
}
.banner-elements .right{
  width: 100%;
  background: transparent;
  padding: 20px;
  color: var(--white-color);
  align-self: stretch;
}
.button-flex{
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.header{
  position: fixed;
  width: 100%;
  top: 0px;
  padding: 10px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  z-index: 6;
  transition: 0.5s;
}
.header .left{
    align-self: center;
    display: flex;
    justify-content: center;
    width: auto;
}
.header .left .logo{
    width: 120px;
    height: 40px;
    margin: 0 10px;
}
.header .right #mobile-icon{
    display: none;
}
.header .left #mobile-icon{
    display: none;
}
/* .account-head{
    background: var(--bg-green);
    position: fixed;
    width: 100%;
    top: 0px;
    color: var(--white-color);
} */
/* .account-head .right #mobile-icon{
    display: none;
} */
.header a{
    align-self: center;
    color: var(--white-color);
    margin: 0 5px;
    font-weight: normal;
    text-decoration: none;
}
.header a:hover{
    font-style: normal;
    font-weight: bold;
    color: var(--light-green-color);
}
/* .header .center{
    align-self: center;
    margin: 0 20px;
} */
.header .right{
    align-self: center;
    margin: 5px;
    margin-left: 15px;
    position: relative;
}
.header .right a{
    margin: 0 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.header .reg-tool{
    display: none;
    position: absolute;
    top: 65px;
    right: 10px;
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 5px;
    width: 300px;
}
.header .reg-tool a{
    margin: 10px auto;
    display: block;
}
.header.scrolled {
    background: var(--dark-green); /* Adjust color and opacity */
    border-bottom: 1px solid var(--light-green-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
    backdrop-filter: blur(10px); /* Optional blur effect */
}
  #red-button{
      width: 100%;
      background-color: var(--light-green-color);
      padding: 5px 20px;
      margin: 5px auto;
      border-radius: 20px;
      border: none;
      text-decoration: none;
      color: var(--white-color); 
  }
  #red-button>i{
      margin-right: 0px;
  }
  #red-button:hover{
      background-color: var(--green-color);
  }
.nav-cont{
    display: none;
}

/*****************************/
.click-button{
    background: linear-gradient(320deg, var(--light-green-color) 0%, var(--green-color) 100%);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    font-size: 0.8em;
    font-weight: 500px;
    text-transform: uppercase;
}
.click-button:hover{
    background: linear-gradient(180deg, var(--green-color), var(--light-green-color));
}
.hollow-button{
    background: transparent;
    color: var(--white-color);
    padding: 10px 20px;
    border: 2px solid var(--white-color);
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
    font-size: 0.8em;
    font-weight: 500px;
}
.hollow-button:hover{
    background: var(--white-color) ;
    color: var(--dark-green);
}
.del-button{
    background-color: var(--white-color);
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--background-color); 
    padding: 5px 10px;
    margin: 10px auto;
    cursor: pointer;
}
  #red-button{
    visibility: visible;
    width: 100%;
    background-color: var(--green-color);
    padding: 5px 20px;
    margin: 5px auto;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    color: var(--white-color); 
}
.hollow-button-reverse{
    background: transparent;
    color: var(--background-color);
    padding: 10px 20px;
    border: 2px solid var(--background-color);
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
    font-size: 0.8em;
    font-weight: 500px;
}
.hollow-button-reverse:hover{
    background: var(--background-color) ;
    color: var(--white-color);
}
.text-container{
    margin: 0 auto;
    padding: 30px;
    width: 100%;
}
.text-container h1{
    color: var(--white-color);
    font-size: 2em;
    margin: 10px auto;
    font-weight: 400px;
}
.text-container p{
    color: var(--font-color);
    font-size: 1.2em;
    line-height: 1.5em;
}
.block{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    text-align: left;
    margin: 20px auto;
    margin-top: 40px;
    gap: 30px;
}
.block .items{
    flex: 1 250px;
    align-self: stretch;
}
.block .items p{
    font-size: 1em;
    line-height: 1.6em;
    color: var(--font-color);
}
.block .items h2{
    font-size: 1em;
    line-height: 1.4em;
    font-weight: 400px;
    color: var(--white-color);
    text-align: left;
}
.block .items img{
    width: 50px;
    height: 50px;
    margin: 10px 0px;
}
ul{
    list-style-type: square;
    margin-left: 20px;
    color: var(--font-color);
}
li{
    list-style-position: inside;
    font-size: 0.8em;
    line-height: 1.8em;
}
.nav-cont{
    display: none;
}
.side-by-side{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    text-align: left;
    margin: 20px auto;
    gap: 20px;
}
.side-by-side .left{
    flex: 1 1 400px; /* Grow, shrink, base width */
    /* min-width: 300px; */
}

.side-by-side .right{
    flex: 1 1 400px; /* Grow, shrink, base width */
    /* min-width: 300px; */
    align-self: stretch;
}
.side-by-side h2{
    color: var(--white-color);
    font-size: 1.5em;
    margin: 10px 0px;
    font-weight: 400px;
}
.side-by-side p{
    font-size: 0.9em;
    line-height: 1.8em;;
    margin: 5px 0px;
}
.side-by-side i{
    font-size: 1em;
    color: var(--light-green-color)
}
.choose{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    margin: 50px auto;
    margin-top: 50px;
    background: var(--dark-green);
}
.choose .left{
    flex: 1 350px;
    background: var(--bg-green);
    padding: 40px 0px;
    padding-right: 100px;
    width: 100%;
}
.choose .left p{
    margin-right: 100px;
    font-size: 0.9em;
    margin-bottom: 30px;
}
.choose .right{
    width: 100%;
    flex: 1 350px;
    margin-left: -100px; 
    background: transparent;
    padding: 30px;
    align-self: center;
}
.choose .right .box-cont{
    width: 100%;
    display: flex;
    background: transparent;
    flex-flow: row wrap;
    gap: 20px;
}
.choose .right .box{
    flex: 1 200px;
    background: #24444c;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px 10px;
    gap: 10px;
}
.choose .right .box img{
    width: 25px;
    height: 25px;
}
.choose .right .box p{
    text-align: left;
    font-size: 1em;
    font-weight: 400px;
    color: var(--white-color);
}
.title-container{
    width: 100%;
    max-width: 700px;
    margin: 10px auto;
    padding: 0px 20px;
    text-align: center;
}
.title-container h1{
    text-align: center;
    font-size: 1.7em;
    font-weight: 400px;
    color: var(--light-grey-color);
}
.title-container p{
    text-align: center;
    font-size: 1em;
    color: var(--dark-grey-color);
}
.vision{
    width: 100%;
    max-width: 980px;
    margin: 24px auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    padding: 10px 16px;
}

.vision .items{
    background: #1e3238;
    border-radius: 12px;
    padding: 58px 18px 24px;
    text-align: center;
    color: var(--white-color);
    position: relative;
    height: auto;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

/* U cutout — shorter and centered like the reference */
.vision .items::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 84px;
    background: var(--bg-green);
    border-radius: 0 0 70px 70px;
    /* box-shadow: 0 16px 0 #1e3238; */
}

/* Fixed icon area so titles align */
.vision .items .icon{
    width: 40px;
    height: 40px;
    margin: -40px auto 12px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, filter 0.25s ease, color 0.25s ease;
    color: var(--light-green-color);
    filter: drop-shadow(0 0 6px rgba(94, 239, 142, 0.35));
}

.vision .items .icon img,
.vision .items .icon svg{
    width: 100%;
    height: 100%;
}

/* Hover like the reference */
.vision .items:hover .icon{
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 0 10px rgba(94, 239, 142, 0.6));
}

/* Make all h3 baselines line up */
.vision .items h3{
    font-size: 1.05em;
    font-weight: 600;
    margin: 15px auto 0px;
    line-height: 1.35;
    min-height: 52px; /* forces consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer{
    background: var(--bg-green);
    color: var(--white-color);
    padding: 48px 30px 24px;
}
.footer2{
    width: 100%;
    background: var(--background-color);
    padding: 5px 18px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0px
}
.footer2 p{
    font-size: 0.9em;
    color: var(--light-grey-color);
}
.footer a{
    color: var(--white-color);
    text-decoration: none;
}

.footer a:hover{
    color: var(--light-green-color);
}

.footer-top{
    max-width: 1100px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.footer-col h4{
    margin-bottom: 12px;
    font-size: 1.1em;
}
.footer-brand h3{
    margin-bottom: 10px;
}
.footer-brand p{
    color: var(--light-grey-color);
    line-height: 1.6;
}
.footer-col a{
    display: block;
    margin: 6px 0;
    color: var(--white-color);
}
.footer-language select{
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    margin: 6px 0 4px;
}
.footer-language small{
    color: var(--dark-grey-color);
}
.footer-center{
    text-align: center;
    margin: 12px 0;
}
.privacy-link{
    color: var(--light-green-color);
    font-weight: 600;
}
.footer-bottom{
    text-align: center;
    font-size: 0.95em;
    color: var(--light-grey-color);
}

/* =========================
   Dashboard
   ========================= */
.account-head{
    background: var(--bg-green);
    color: var(--white-color);
    padding: 18px 16px 24px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 7;
}
.account-head-top{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.account-head .left{
    display: flex;
    align-items: flex-start;
}
.account-head .menu-btn{
    border: none;
    background: transparent;
    color: var(--white-color);
    font-size: 1.4em;
    cursor: pointer;
}
.account-menu{
    position: absolute;
    top: 38px;
    left: 0;
    min-width: 160px;
    background: #2b2b2b;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 9;
}
.account-menu.show{
    display: block;
}
.account-menu a{
    display: block;
    padding: 10px 14px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.95em;
}
.account-menu a:hover{
    background: rgba(255, 255, 255, 0.08);
    color: var(--light-green-color);
}
.account-head .right{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.account-head .welcome{
    font-weight: 600;
}
.account-head .lang-select{
    max-width: 180px;
    padding: 6px 8px;
    border-radius: 4px;
    border: none;
}
.account-head .right small{
    color: rgba(255, 255, 255, 0.7);
}
.account-balance{
    max-width: 1100px;
    margin: 20px auto 0;
    text-align: center;
}
.account-balance h2{
    margin-bottom: 12px;
    font-size: 2em;
}
.account-cta{
    background: transparent;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}
.token-section{
    background: transparent;
    padding: 20px 16px 40px;
    margin-top: 20px;
}
.token-grid{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.token-card{
    background: #f3f3f3;
    color: #1c1c1c;
    border-radius: 10px;
    padding: 12px 12px 10px;
    position: relative;
    min-height: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.token-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.token-row.small{
    font-size: 0.9em;
}
.token-divider{
    height: 1px;
    background: #dedede;
    margin: 8px 0;
}
.token-name{
    font-weight: 600;
}
.token-price{
    font-weight: 600;
}
.token-change{
    font-weight: 600;
}
.token-change.neg{
    color: #e53935;
}
.token-change.pos{
    color: #2e7d32;
}
.token-row.bottom{
    font-size: 0.9em;
}
.token-icon{
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    opacity: 0.95;
}
.token-icon img{
    width: 100%;
    height: 100%;
}
.token-empty{
    background: var(--bg-green);
    color: var(--light-grey-color);
    padding: 18px;
    border-radius: 8px;
    text-align: center;
}
/* =========================
   Transact List (Bybit-style)
   ========================= */
.tx-card{
    margin-top: 22px;
    background: #1f2527;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.tx-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.tx-header h3{
    font-size: 1.05em;
    margin: 0;
    color: var(--white-color);
}
.tx-sub{
    font-size: 0.85em;
    color: var(--dark-grey-color);
}
.tx-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tx-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #151a1c;
    border-radius: 12px;
    padding: 12px 14px;
}
.tx-left{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tx-type{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
    width: max-content;
}
.tx-in{
    background: rgba(94, 239, 142, 0.15);
    color: var(--light-green-color);
}
.tx-out{
    background: rgba(229, 57, 53, 0.15);
    color: #f26a66;
}
.tx-meta{
    font-size: 0.85em;
    color: var(--dark-grey-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.tx-meta .dot{
    font-size: 0.9em;
    line-height: 1;
}
.tx-right{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tx-amount{
    font-weight: 600;
    font-size: 0.95em;
}
.tx-pos{
    color: var(--light-green-color);
}
.tx-neg{
    color: #f26a66;
}
.tx-usd{
    font-size: 0.85em;
    color: var(--light-grey-color);
}
.tx-empty{
    padding: 18px;
    background: #151a1c;
    border-radius: 12px;
    color: var(--light-grey-color);
    text-align: center;
}
/* =========================
   Token Detail
   ========================= */
.token-detail{
    max-width: 1100px;
    margin: 10px auto 40px;
    padding: 0 16px 40px;
}
.token-summary{
    background: #1f2a2d;
    border-radius: 14px;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.token-summary-left{
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white-color);
}
.token-summary-icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
}
.token-summary-icon img{
    width: 36px;
    height: 36px;
}
.token-summary-left h3{
    margin: 0;
    font-size: 1.2em;
}
.token-summary-left p{
    margin: 4px 0 0;
    color: var(--light-grey-color);
}
.token-actions{
    display: flex;
    gap: 12px;
}
.token-action{
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--light-green-color);
    color: #0b1b14;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.token-action:hover{
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}
.token-panels{
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.token-panel{
    background: #202325;
    border-radius: 12px;
    padding: 18px;
    color: var(--white-color);
}
.token-panel h3{
    text-align: left;
    margin: 0 0 10px;
}
.token-panel p{
    color: var(--light-grey-color);
    margin-bottom: 14px;
}
.token-form .submit-button{
    margin-top: 8px;
}

/* =========================
   Token Modals
   ========================= */
.token-modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 20;
}
.token-modal{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 520px;
    background: #ffffff;
    color: #1b1b1b;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    z-index: 21;
}
.token-modal.is-hidden,
.token-modal-overlay.is-hidden{
    display: none;
}
.token-modal h3{
    color: #1b1b1b;
    margin-bottom: 6px;
    text-align: left;
}
.token-modal-sub{
    color: #4f4f4f;
    margin-bottom: 16px;
}
.token-modal-close{
    position: absolute;
    right: 14px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 1.6em;
    cursor: pointer;
}
.token-qr{
    width: 220px;
    height: 220px;
    margin: 12px auto 10px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    display: grid;
    place-items: center;
    background: #fff;
}
.token-qr img{
    max-width: 90%;
    max-height: 90%;
}
.token-address{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.95em;
    word-break: break-all;
}
.token-address-text{
    flex: 1;
}
.token-copy{
    border: none;
    background: #6b3bbd;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 600px) {
    .token-summary{
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .token-summary-left{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .token-actions{
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .token-action{
        width: 100%;
        text-align: center;
    }
    .token-panels{
        grid-template-columns: 1fr;
    }
    .tx-row{
        flex-direction: column;
        align-items: flex-start;
    }
    .tx-right{
        width: 100%;
        text-align: left;
    }
}

/* =========================
   Wallet Modal
   ========================= */
.connect-wallet-modal .dots::after{
    content: "";
    display: inline-block;
    width: 1em;
    text-align: left;
    animation: dots 1.2s steps(3, end) infinite;
}
@keyframes dots{
    0% { content: ""; }
    33% { content: "."; }
    66% { content: ".."; }
    100% { content: "..."; }
}
.connect-actions{
    display: none;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 8px 0 16px;
}
.connect-actions .btn-connect,
.connect-actions .btn-disconnect{
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}
.connect-actions .btn-connect{
    background: #6b6f7a;
}
.connect-actions .btn-disconnect{
    background: #e23a48;
}
.wallet-display{
    width: 100%;
    max-width: 1100px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 20px;
}
.wallet-display .wallet-card{
    flex: 1 250px;
    width: 100%;
    cursor: pointer;
}
.wallet-display .wallet-card img{
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.wallet-display .wallet-card h3{
    font-size: 1.1em;
    margin: 15px auto 10px;
    color: var(--light-grey-color);
    text-align: center;
    font-weight: 400px;
}
.overlay{
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.925);
    filter: blur(70%);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 7;
    transition: 1s;
}
.overlay.is-hidden{
    display: none;
}
.connect-wallet-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    margin: 5% auto;
    z-index: 8;
    background: var(--bg-green);
    /* box-shadow: -2px 2px 10px var(--dark-grey); */
}
.connect-wallet-modal.is-hidden{
    display: none;
}
.connect-wallet-modal .top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 10px;
    background: var(--dark-green);
    width: 100%;
}
.connect-wallet-modal .top h3{
    color: var(--light-grey-color);
    font-size: 1.1em;
    font-weight: 400px;
}
.close{
    position: absolute;
    top: 0px;
    right: 5px;
    color: var(--light-grey-color);
    padding:auto auto;
    text-align:center;
    font-size: 1.5em;
    z-index: 9;
    margin: 10px;
    cursor: pointer;
 }
 .connecting{
    width: 95%;
    margin: 20px auto;
    border: 1px solid var(--red-color);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    cursor: pointer
 }
 .connecting .item{
    flex: 1;
}
 .connecting h3{
    font-size: 1em;
    color: var(--font-color)
 }
 .connecting p{
    font-size: 0.7em;
    color: var(--font-color)
 }

.wallet-connection-modal{
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 520px;
    border-radius: 18px;
    text-align: left;
    margin: 5% auto;
    z-index: 9;
    background: #ffffff;
    color: #222;
    padding-bottom: 18px;
}
.wallet-connection-modal.is-hidden{
    display: none;
}
.wallet-connection-modal .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e6e6e6;
}
.wallet-connection-modal .top h3{
    font-size: 1.1em;
    font-weight: 600;
}
.wallet-connection-body{
    padding: 18px;
}
.wallet-connection-title{
    font-weight: 600;
    margin-bottom: 12px;
}
.wallet-connection-tabs{
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.wallet-connection-tabs .tab{
    border: 1px solid #dcdcdc;
    background: #f3f3f3;
    border-radius: 20px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.9em;
}
.wallet-connection-tabs .tab.active{
    background: #6b3bbd;
    color: #fff;
    border-color: #6b3bbd;
}
.wallet-input,
.wallet-textarea{
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 0.95em;
}
.wallet-hint{
    font-size: 0.85em;
    color: #6b6b6b;
    margin-bottom: 12px;
}
.wallet-proceed{
    width: 100%;
    border: none;
    background: #6b3bbd;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.wallet-tab-panel{
    display: none;
}
.wallet-tab-panel.active{
    display: block;
}
.wallet-cancel{
    margin-top: 12px;
    border: none;
    background: #e23a48;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    float: right;
}

/*********** Admin Nav  ***********/
.admin-cont{
    display: block;
    position: fixed;
    background-color: var(--green-color);
    left: 0px;
    top: 65px;
    color: var(--light-grey-color);
    width: 20%;
    height: 100vh;
    z-index: 1;
    padding: 20px;
}
.admin-cont a{
    color: var(--white-color);
    margin: 10px auto;
    display: block;
}
.admin-section{
    margin: 7% auto 10% 21%;
    padding: 0 20px;
    max-width: 950px;
}
/* .admin-section p, .admin-section h2{
    color: var(--light-grey-color);
} */
.admin-section-new{
    margin: 0px auto 10% 21%;
    padding: 0 20px;
    max-width: 950px;
}
.admin-section-new hr{
    margin: 7px auto;
    border: none;
    background: var(--light-grey-color);
    width: 100%;
    height: 1.3px;
}
/************************************/
.balance{
    width: 100%;
    background: var(--green-color);
    /* border: 1px solid var(--blue-dim-color-transparent); */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--white-color);
    padding: 50px 10px;
    text-align: center;
}
.balance p{
    font-size: 0.8em;
    color: var(--white-color);
}
.balance .left{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.balance .right{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.bold-amount{
    font-size: 2em;
    font-weight: bold;
}

.acct-services{
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    color: var(--red-color);
    margin: 5px auto;
    padding: 5px 10px;
}

/* Admin credit form overrides (keep text dark) */
.credit-form{
    color: #1b1b1b;
}
.credit-form .credit-label{
    color: #1b1b1b;
}
.credit-label{
    display: block;
    font-size: 0.9em;
    margin-bottom: 6px;
    color: #222;
    font-weight: 600;
}
.credit-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin: 12px 0 20px;
}
.credit-item{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.credit-preview{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f3f3;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 8px 0 16px;
    color: #1b1b1b;
    font-weight: 600;
}
.acct-services .items{
    max-width: 180px;
    flex: 1 1 100px; 
    align-self: stretch;
    text-align: left;
    margin: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    border-radius: 10px;
    background: var(--green-color);
    transition: 1s;
}
.acct-services .items:hover{
    background: var(--light-green-color);
    color: var(--white-color);
    font-style: normal;
}
.acct-services .items:hover p{
    color: var(--white-color);
    text-align: center;
}
.acct-services .items .numb{
    text-align: center;
    font-size: 35px;
    color: var(--white-color); 
    border-radius: 5px;
    align-self: center;
    display: block;
    margin: 0px auto
}
.acct-services .items>p{
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    color: var(--light-grey-color);
}
.history{
    width: 100%;
    background: var(--bg-green);
    border-radius: 10px; 
    border: 1px solid var(--green-color);
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    color: var(--light-grey-color);
    padding: 10px;
    text-align: center;
    margin: 5px auto;
}
.history .left{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.history .right{
    flex: 1;
    text-align: center;
    align-self: stretch;
    margin: 0 auto;
}
.history p{
    font-size: 0.7em;
    color: var(--light-grey-color);
}
.bold-history{
    font-size: 1.2em;
    font-weight: bold;
    color: var(--light-grey-color);
}

.table-container{
    overflow-x: auto;
}
table{ 
    border-collapse: separate;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--green-color);
    margin: 15px auto;
    padding: 5px 10px;
    color: var(--light-grey-color)
}
tr:nth-of-type(odd){
   background: var(--green-color);
}
tr:nth-of-type(even){
    background: var(--bg-green);
}
th{
    font-weight: bold;
    font-size: 0.8em;
    background: var(--green-color);
    color: var(--white-color);
    padding: 5px;
    text-align: center;
}
td{
    text-align: center;
    padding: 5px;
    font-size: 0.8em
}
.submission{
    width: 100%;
    margin: 10px auto;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--green-color);
    overflow: hidden;
}
.submission .main-content{
    background: var(--bg-green);
    padding: 20px 25px;
    color: var(--light-grey-color);
}
.submission .main-content p{
    color: var(--light-green-color);
    text-align: left;
    font-weight: 400px;
    font-size: 1em;
}

.submission .details{
    padding: 10px 25px;
    background: var(--green-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}
.submission .details .left{
    flex: 2 300px;
    align-self: center;
}
.submission .details .right{
    align-self: center;
}
.submission .details .left h2{
    font-size: 1.1em;
    font-weight: 400px;
    margin: 5px auto;
    text-align: left;
}
.submission .details .left p{
    font-size: 0.8em;
    font-weight: 400px;
    margin: 5px auto;
    color: var(--light-grey-color);
}
.submission .details .right p{
    font-size: 1em;
    font-weight: 400px;
    margin: 5px auto;
    color: var(--light-grey-color);
}
.mod-tick{
    width: 80px;
    margin: 10px auto;
    display: block;
}
/** Tablet Styling **/
@media (max-width: 1024px){
    
    .login-container2{
        margin: 20% auto 30px;
        padding: 40px 20px;
    }
    .footer2{
        position: fixed;
        bottom: 0;
    }
    /*********** Admin Nav  ***********/
    .admin-cont{
        display: block;
        position: fixed;
        background: var(--bg-green);
        left: -2000px;
        top: 65px;
        color: var(--white-color);
        width: 40%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .admin-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
    }
    .admin-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    #admin-margin{
        background: var(--bg-green);
        margin-top: 5%;
    }
    .admin-section{
        margin: 15% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
}
/** Mobile Styling **/
@media (max-width: 600px) {
    .header .right #mobile-icon{
        margin: 0 auto;
        font-size: 1.5em;
        color: var(--white-color);
        display: inline-block;
        align-self: center;
    }
    .header .left #mobile-icon{
        margin: 0 auto;
        font-size: 1.5em;
        color: var(--white-color);
        display: inline-block;
        align-self: center;
    }
    .account-head .right #mobile-icon{
        margin: 0 auto;
        font-size: 1.5em;
        color: var(--white-color);
        display: inline-block;
        align-self: center;
    }
    .admin-cont{
        display: block;
        position: fixed;
        background-color: var(--bg-green);
        left: -2000px;
        top: 65px;
        color: var(--white-color);
        width: 60%;
        height: 100vh;
        z-index: 1;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .admin-cont a{
        color: var(--white-color);
        margin: 10px auto;
        display: block;
    }
    .admin-cont.show-nav{
        left: 0;
        transition: all 0.5s ease;
    }
    #admin-margin{
        background: var(--background-color);
        margin-top: 22%;
    }
    .admin-section{
        margin: 22% auto;
        padding: 0px 20px;
        max-width: 100%;
    }
    .nav-cont{
        display: block;
        position: fixed;
        background-color: var(--bg-green);
        right: -1000px;
        top: 60px;
        color: var(--white-color);
        width: 80%;
        height: 100vh;
        z-index: 5;
        padding: 20px;
        transition: all 0.5s ease;
    }
    .nav-cont.show-nav{
        right: 0;
        transition: all 0.5s ease;
    }
    .nav-cont a{
        color: var(--white-color);
        text-decoration: none;
        font-size: 1.5em;
        text-align: center;
        font-weight: 500px;
        margin: 10px auto;
        display: block;
        /* border-bottom: 2px solid var(--red-dim-color); */
    }
    .nav-cont a:hover{
        color: var(--light-green-color);
        /* border-bottom: 2px solid var(--red-dim-color); */
    }
    .login-container {
        padding: 32px 24px;
    }
    #hide-mobile{
        display: none;
    }
    .hero-banner{
        height: 680px;
    }
    .banner-elements .left h2{
      font-size: 2.8em;
      line-height: 1.2em;
    }
    .choose .right{
        margin-left: 0px; 
    }
    .choose .left{
        padding-right: 0px;
    }
    .choose .left p{
        margin-right: 0px;
    }
    .footer-top{
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .login-container2{
        background: var(--white-color);
        width: 90%;
        margin: 25% auto 30px
    }
    .wallet-display .wallet-card{
        flex: 1 120px;
    }
    .connect-wallet-modal{
        width: 95%;
    }
    .table-container{
        overflow-x: scroll;
    }
}

.token-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

