/* Imports of Fonts */

@import url("https://fonts.googleapis.com/css2?family=Bangers&family=DM+Sans:wght@400;500;700&family=Fredoka:wght@400;600;700&family=Lilita+One&family=Londrina+Solid:wght@300;400;900&family=Luckiest+Guy&family=Outfit:wght@400;600;700&family=Quicksand:wght@400;600;700&family=Rubik+Bubbles&family=Space+Grotesk:wght@400;500;700&display=swap");

@font-face {
    font-family: 'techbit_demoregular';
    src: url('../fonts/techbitdemoregular-m2nam-webfont.woff2') format('woff2'),
         url('../fonts/techbitdemoregular-m2nam-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
           
        }
    
        
        h2.one {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            margin: 0px;
            
        }
        
        
        h2.news {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            padding-bottom: 60px;
            
        }
        
        h2.poll {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            padding-bottom: 60px;
            
        }

        h2.two {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #5e708f;
            margin: 0px;
        }
        
        h2.mob {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            margin: 0px;
            -webkit-text-stroke: 2px #382d27;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
            padding-bottom: 60px;
        }

        h2.tokenomics {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            margin-bottom: -80px;
            -webkit-text-stroke: 2px #382d27;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
            padding: 80px 0
        }

        h2.roadmap {
            font-family: 'Lilita One', cursive;
            font-size: clamp(3.2rem, 4vw, 4rem);
            color: #fff;
            margin: 0px;
            -webkit-text-stroke: 2px #382d27;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
        }
        
        #news h5.searcharchive, #poll h5.searcharchive {
            
            color: white; 
            font-family: 'Londrina Solid';
            font-size: 1.5rem;
            display: flex;
            justify-content: flex-start;
                    }


/* Custom responsive visibility */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex !important;
}

.responsive-img {
    max-width:50%;
}

.grecaptcha-badge { display: none; }

#preloader {
  display: none; /* hidden by default */
}
#preloader.visible {
  display: flex; /* or block/grid — whatever your loader uses */
}

.recaptcha-attribution {
    font-size: 0.7rem;
    color: #153f52;
    text-align:center;
    margin-top: 10px;
    font-family: 'Outfit';
    display: block;
    padding: 0px 7px;
}

.recaptcha-attribution span {
  display: inline-block;
  max-width: 90%;
  line-height: 1.4;
}

.recaptcha-attribution a {
  color: #112128;
  text-decoration: underline dotted;
  font-weight: 400;
}

.nav-lang-switcher {
    position: relative;
    cursor: pointer;
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-family: 'Quicksand';
    font-weight: bold;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-lang-switcher:hover .lang-dropdown {
  display: block;
}

.nav-lang-switcher:hover {

  background: rgb(0 0 0 / 57%);
    padding: 4px;
    border-radius: 50%;
}

.lang-dropdown {
  position: absolute;
  top: 33px;
  right: 0;
  background-color: #1a1e2d;
  border: 4px solid #256683;
  border-radius: 6px;
  min-width: 120px;
  z-index: 1000;
}

.lang-dropdown div {
    padding: 8px 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 0px !important;
}

.lang-dropdown div:hover {
  background-color: #174457;
}

.lang-dropdown img {
    width: 27px;
    height: 27px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1C2D41;
  display: flex; /* keep this so centering always works */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.visible {
  opacity: 1;
  visibility: visible;
}
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  color: white;
  max-width: 90%;
  
}

.progress-bar {
  width: 300px;
  height: 10px;
  background: #444;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 15px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #f5c518;
  transition: width 0.3s ease;
}

/* Nav */

    nav {
    position: fixed;
    top: var(--marquee-height, 45px);
    width: 100%;
    background: #3283a6;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
        }

        nav a {
            font-family: 'Outfit';
            font-weight: 900;
            font-size: clamp(1.2rem, 1.2vw, 1.6rem);
            padding: clamp(6px, 1vw, 12px) clamp(8px, 1vw, 16px);
            color: white;
            text-decoration: none;
            transition: background 0.3s;
            cursor: pointer;
            text-align: center;
        }
        nav a:hover {
            background: rgb(0 0 0 / 57%);
        }
        
        .nav-wrapper {
            display: flex;
            align-items: center;
            width: 100%; /* Prevents full width stretching */
            /* max-width: 1400px; /* Limits max width */
            justify-content: space-between;
            position: relative;
            flex-wrap: nowrap;
            padding: 5px 20px;
        }

        .nav-border {
            position: absolute;
            transform: translateZ(0);
            line-height: 0;
            display: block;
            top: 93%;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233283a6" fill-opacity="1" d="M0,128L0,192L90,192L90,32L180,32L180,96L270,96L270,192L360,192L360,224L450,224L450,256L540,256L540,160L630,160L630,64L720,64L720,64L810,64L810,192L900,192L900,160L990,160L990,64L1080,64L1080,32L1170,32L1170,256L1260,256L1260,128L1350,128L1350,256L1440,256L1440,0L1350,0L1350,0L1260,0L1260,0L1170,0L1170,0L1080,0L1080,0L990,0L990,0L900,0L900,0L810,0L810,0L720,0L720,0L630,0L630,0L540,0L540,0L450,0L450,0L360,0L360,0L270,0L270,0L180,0L180,0L90,0L90,0L0,0L0,0Z"></path></svg>') repeat-x bottom center;
            background-size: auto 100%;
            filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.3));
            width: 100%;
            pointer-events: none;
        }
    
        .nav-container {
            display: flex;
            justify-content: center;
            flex-grow: 1;
            /*transform: translateX(calc(-5% - 10px));  Keeps menu visually centered */
            gap: clamp(5px, 2vw, 15px); /* Adaptive spacing */
            white-space: nowrap; /* Prevents links from breaking into two lines */
        }

        
        .nav-logo {
            margin-right: auto;
        }
        
        .navLogo {
            height: clamp(10px, 11.5vw, 60px);
            width: auto;
            object-fit: contain; /* scaling */
            filter: drop-shadow(4px 4px 6px rgba(20, 52, 66, 0.6));
            margin-left: -30px;
        }
        
        /* Hide the menu-toggle on larger screens */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            position: relative;
            z-index: 1001;
        }
        
        .menu-toggle .bar {
            background: white;
            height: 3px;
            width: 25px;
            margin: 2px 0;
            transition: 0.3s;
        }
        
        /* When menu is open */
        .menu-toggle.open .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }


/* Default Login Button (Desktop) */
.nav-login {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #5e4d1e;
    font-size: 1.3rem;
    gap: 8px;
    padding: 9px 13px;
    background: linear-gradient(135deg, #ffe600, #ffaa00);
    border-radius: 5px;
    margin-right: -20px;

}

.nav-login:hover {
    background: #ffe600;
}

.nav-login i {
    font-size: clamp(0.7rem, 3vw, 1.4rem);
}


.nav-login-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topConnectButton {
  display: flex;
  align-items: center; /* vertical alignment */
  gap: 4px; /* space between icon and text */
  font-size: clamp(0.6rem, 3vw, 1rem);
  font-weight: bold;
  font-family: 'Outfit';
}

.topConnectButton i {
  flex-shrink: 0; /* don't let icon shrink */
}


/* Login Modal Overlay */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    z-index: 9999;
}

/* Login Modal Content */
.login-modal-content {
    background: #1a1e2d;
    padding: 25px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
    transition: transform 0.3s ease;
}

.login-modal-overlay[style*="opacity: 1"] .login-modal-content {
    transform: scale(1);
}

.login-modal-overlay[style*="opacity: 0"] .login-modal-content {
    transform: scale(0.95);
}

/* Updated Modal Styling to Avoid Bootstrap Conflicts */
.login-modal-content h2 {
    font-size: 1.8rem;
    color: white;
}

.login-modal-content input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    background: #2c3245;
    color: white;
    font-size: 1rem;
}

.login-modal-content button {
    width: 90%;
    padding: 10px;
    margin-top: 15px;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-modal-content button:hover {
    background: #e6b800;
}

.wallet-connect-group {
background: #212735;
    border: 2px solid #393f4b;
    padding-bottom: 9px;
    border-radius: 15px;

}

/* Ledger CSS */

.new-stake-highlight {
  animation: highlightFade 2s ease-in-out forwards;
}

@keyframes highlightFade {
  0% {
    background-color: #ffe97f; /* light yellow flash */
  }
  50% {
    background-color: #fff5cc; /* softer yellow */
  }
  100% {
    background-color: transparent; /* fade back */
  }
}


#ledgerTabsContent #stake {
      scrollbar-color: #ffcc00 #2c3245;
  scrollbar-width: thin;
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 4px rgba(255, 193, 7, 0.2);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.7);
  }
  100% {
    box-shadow: 0 0 4px rgba(255, 193, 7, 0.2);
  }
}

.badge-glow {
  animation: pulseGlow 1.8s infinite;
  border-radius: 6px;
}

.ledger-modal .modal-dialog {
  max-width: 70vw;
  margin: 1rem auto;
}

.ledger-modal .modal-content {
  background: #1a1e2d;
  padding: 20px;
  border-radius: 16px;
  width: 100%;
  min-width: unset; /* override 800px */
  text-align: left;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  animation: fadeIn 0.3s ease-in-out;
  transition: transform 0.3s ease;
  border: none;
}

.ledger-modal .modal-header {
  background-color: transparent;
  border-bottom: none;
}

.ledger-modal .modal-title {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: white;
  font-weight: 600;
}

/* Tab Styling */
.ledger-modal .nav-tabs {
  background: transparent !important;
  border-bottom: 2px solid #f4d044 !important;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.ledger-modal .border-dark {
    border-bottom: 0px !important;
}
.ledger-modal .nav-tabs .nav-link {
  color: #bbb;
  font-weight: 500;
  background: transparent;
  border: none;
  padding: 12px 20px;
}

.ledger-modal .nav-tabs .nav-link.active {
  color: #ffcc00;
  background-color: #292e47;
  /* border-bottom: 3px solid #ffcc00;*/
}

.ledger-modal .modal-body {
  max-height: 80vh;
  min-height: 300px; /* optional: enough for 1â€“2 transactions */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.ledger-modal .tab-content {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}

/* Table Styling */
.ledger-modal table {
  background: #2c3245;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.95rem;
}

.ledger-modal .table-container {
  max-height: 400px;
  overflow-y: auto;
  border-radius: 8px;
}

.ledger-modal table .table-dark {
background: linear-gradient(0deg, #443e09, #744e00) !important;
}

.ledger-modal table thead {
  background: #181c2b;
}

.ledger-modal table th,
.ledger-modal table td {
  vertical-align: middle;
  padding: 12px 16px;
  border: none;
}

.ledger-modal .table-responsive {
  max-height: 400px;
  overflow-y: auto;
  border-radius: 8px;
  scrollbar-color: #ffcc00 #2c3245;
  scrollbar-width: thin;
}

.ledger-modal .table-responsive::-webkit-scrollbar {
  width: 6px;
}
.ledger-modal .table-responsive::-webkit-scrollbar-track {
  background: #2c3245;
}
.ledger-modal .table-responsive::-webkit-scrollbar-thumb {
  background-color: #ffcc00;
  border-radius: 6px;
}

.ledger-modal .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #22293b; /* subtle dark row */
}

.ledger-stats-row {
  font-size: 1rem;
  background: #1a1e2d;
  border-bottom: 1px solid #2c3245;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.ledger-stats-row .stat-item {
  margin-bottom: 10px;
}

.ledger-modal .total-header {
    color: #fff;    
}

.ledger-modal table,
.ledger-modal table thead,
.ledger-modal table tbody,
.ledger-modal table tr,
.ledger-modal table td,
.ledger-modal table th {
  background-color: transparent;
  color: white;
  font-size: 0.8rem;
}

.ledger-modal .explorer-link {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.9em;
  vertical-align: middle;
  line-height: 1;
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ledger-modal .explorer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.ledger-modal .bg-warning {
    background: rgb(145 122 22) !important;
}
/* Fix Bootstrap Interference */
.login-modal {
    display: none; /* Prevent Bootstrap from forcing display */
}

.ledger-modal {
    display: none;
}

.ledger-icon-legend {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 10px 0 20px;
  flex-wrap: wrap;
}

.legend-label {
    font-family: 'Outfit';
    font-size: 0.8rem;
    font-weight: 600;
    text-transform:uppercase;
}

.legend-entry {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  color: #ccc;
}


/* === Scoped staking styles === */

.staking-ui .stake-input-wrapper {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}

.staking-ui input[type="number"] {
  width: 100%;
  padding: 10px 42px 10px 10px;
  border-radius: 10px;
  border: 2px solid #ddc568;
  background: #795f00;
  color: #fff;
  font-size: 1rem;
}

.staking-ui .max-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    padding: 3px 6px;
    border: none;
    border-radius: 5px;
    background: #3a3008;
    color: #fff;
    cursor: pointer;
}

.staking-ui .max-btn:hover {
  background: #4f451c;
}

.staking-ui .stake-select {
    padding: 10px;
    border-radius: 10px;
    background: 4px solid #ddc568;
    color: #fff;
    border: 2px solid #d7c675;
    font-size: 1rem;
    width: 120px;
}

.btn-stake-confirm {
    padding: 0.4rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(0deg, #ffe600, #ffaa00);
    color: #4c3e05;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-stake-confirm:hover {
  background: #e6b800;
}

.btn-stake-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-stake-cancel {
padding: 0.4rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(0deg, #d7d7d7, #9f9f9f);
    color: #4c3e05;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-stake-cancel:hover {
    background: #f0f0f0;
}

.btn-affiliate-claim {
    padding: 0.1rem 0.4rem;
    font-size: 0.9rem;
    font-weight: normal;
    border: 0px;
    border-radius: 6px;
    background: linear-gradient(0deg, #497633, #56a259);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Quicksand';
}

.btn-affiliate-claim:hover {
  background: #76ab68;
}

.staking-paragraph, .affiliate-paragraph {
    
    font-size: clamp(0.5rem, 3vw, 1rem);
    color: #ccc;
    font-family: 'Outfit';
}

/* Toggle Form */
.toggle-form {
    margin-top: 10px;
    font-size: 1rem;
    color: white;
}

.toggle-form span {
    color: #ffcc00;
    cursor: pointer;
    font-weight: bold;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

#signupForm a {
    color: #f4d044;
    text-decoration: none;
}

#signupForm a:hover {
    color: #f4d044;
    text-decoration: underline;
}

#signupForm p {
    color: #c8c5b7;
}

p#signup-message { color: white; }
p#forgot-password-message { color: white; font-size: 0.8rem;}


.logoutButton {
    padding: 5px 10px;
    background: #665413;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Hidden class for toggling between login & signup */
.hidden {
    display: none;
}

/* Modal animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


/* Sections */

        .section {
            padding: 50px 20px;
            text-align: center;
            min-height: 30vh;
        }
        
/* Chart Container */

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto; /* center chart */
    padding: 7px;
    border: 0px solid blue;
    box-sizing: border-box;
    overflow: visible;
    margin-top: 50px;
    margin-bottom: 50px;
}

.desc-title { font-weight: bold; font-size:1.4rem; }
.desc-title.presale { color: #c8f86d; }

#tokenomicsChart {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    overflow: visible !important; /* Allow hover effect to expand */
}

/* Home Cover */

#home {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    overflow: hidden;
    display: block;
    padding-top: 0px; /* matches .home-bg-top visual height */
    padding-bottom: clamp(100px, 27vh, 190px);
}

/*.home-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: url(../images/background_top_wide.webp) no-repeat bottom / cover;
  z-index: 1;
  pointer-events: none;
}

.home-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: url(../images/background_bottom_wide.webp) no-repeat center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}*/

.home-bg {
  position: absolute;
  left: 0;
  width: 101%;
  height: clamp(70vh, 100%, 100%);
  background: url(../images/background_wide.webp) no-repeat;
  background-size: cover;
  background-position: center calc(100% + 35px); /* Push 50px below bottom */
  z-index: 1;
  pointer-events: none;

}

.home-bg-top {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(70vh, 91vh, 100vh);
  background: url(../images/background_top_wide_blurrr.webp) no-repeat bottom / cover;
  z-index: 1;
  pointer-events: none;
}

.home-bg-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(25vh, 49vh, 60vh);
  background: url(../images/background_bottom_wide_blurrr.webp) no-repeat center bottom / cover;
  z-index: 1;
  pointer-events: none;
}

/* Zoomed-in tweaks
body.zoom-100 .home-bg-bottom {
    bottom: -50px;
    height: 57vh;
}

body.zoom-100 .home-bg-top {
    top: -220px;
}

body.zoom-125 .home-bg-bottom {
    bottom: 20px;
    height: 47vh;
}

body.zoom-125 .home-bg-top {
    top: -90px;
}

body.zoom-156 .home-bg-bottom {
    bottom: 120px;
    height: 47vh;
}

body.zoom-156 .home-bg-top {
    bottom: 0;
    height: 88vh;
} */

/*body.vh-short .home-bg-top {
  top: -100px !important;
}
body.vh-short .home-bg-bottom {
  bottom: 0px !important;
}

body.vh-medium .home-bg-top {
  top: -150px;
}
body.vh-medium .home-bg-bottom {
  bottom: -30px;
}

body.vh-tall .home-bg-top {
  top: -120px;
}
body.vh-tall .home-bg-bottom {
  bottom: -70px;
}

body.vh-tallest .home-bg-top {
  top: -200px;
}
body.vh-tallest .home-bg-bottom {
  bottom: -110px;
}*/



body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

.home-bottom-spacer {
  height: 23vh; /* or tweak to 12vh, 15vh etc */
  width: 100%;
}

.home-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: start; /* ðŸ‘ˆ ensures top-aligned children */
  justify-content: center;
  gap: 20px;
  padding: 140px 80px 0px 80px;
  position: relative;
  z-index: 3;
}

.home-covertext {
  grid-column: 1;
  grid-row: 1;
}

.home-characters {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -60px;
}

.home-characters img {
    width: clamp(300px, 100%, 1650px); /* E nsures a hard minimum */
    max-width: 100%; /* Prevents it from getting too big */
    height: auto;
    object-fit: contain; /* Prevents distortion */
    animation: floatUpDown 4s infinite ease-in-out;
    margin: -205px;
}

.home-covertitle {
    margin-top: 4vh;
    text-align: center;
    font-family: 'Londrina Solid', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1), 0 0 19px rgba(0, 0, 0, 1);
    color: white;
    margin-top: 10vh;
}
 
.home-toptext {
    font-size: clamp(1.1rem, 4vw, 2.7rem) !important;
    /* font-weight: 600; */
    margin-bottom: clamp(0px, 4vw, -12px);
    /*background: radial-gradient(circle at top, #6af4e7 40%, #fbf393 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-family:  'Londrina Solid', sans-serif;
}

.home-toptext2 {
    font-size: clamp(1.1rem, 4vw, 2.7rem) !important;
    /* font-weight: 600; */
    margin-bottom:clamp(10px, 4vw, 0px);
    /*background: radial-gradient(circle at top, #6af4e7 40%, #fbf393 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-family:  'Londrina Solid', sans-serif;
}

.home-mobiletext {
    display: none;
}

.home-bottext {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
  color: #fff;
}

.title-poop {
    font-size: clamp(2rem, 3vw, 2.4rem);
}

.home-tokenbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* This ensures the image stays at the bottom */
    align-items: center; /* Centers the image */
    text-align: center;
    height: 90%;
}

.home-tokenbox img {
    width: clamp(200px, 80%, 400px); /* Minimum, preferred, and maximum size */
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures it doesn't stretch */
    align-self: flex-end; /* Sticks it to the bottom of the tokenbox */
}


/* Presale */

#presaleOverlay {
position: absolute;
    top: -3px;
    left: -3px;
    width: 101%;
    height: 101%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.presale-timer-container {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}

#presaleCountdown {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 10px;
  font-family: 'Londrina Solid', sans-serif;
}

button.locked, .disabled {
  background-color: #999 !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.buy-button.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.froggy-container {
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.froggroupmobile {
    display:none;
}

.froggy-wrapper {
    grid-column: 2;
    /* grid-row: 1 / span 2; */
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 10vh;
}

/* .solid-seal {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    width: 350px;
}

.solid-seal img {
  max-width: 100%;
  height: auto;
}
*/

.solid-seal-mobile {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        opacity: 1;
        width: clamp(150px, 50vw, 300px);
        bottom: -135px;
        display: block;
}

.solid-seal-mobile img {
  max-width: 100%;
  height: auto;
}



.froggy-presale-box {
  position: relative;
  background: linear-gradient(180deg, rgb(230 195 87) 55%, rgb(28 45 65) 55%);
  /*padding: 2rem;*/
  max-width: clamp(287px, 78vw, 523px);
  margin: 1rem auto 1rem -0.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Quicksand', sans-serif;
  color: #ffcc00;
  margin-top: auto; /* maybe 4.5 */
  border-radius: 15px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.8);
  min-height: 678px;
  transition: background 0.3s ease;
  
}

.froggy-presale-box.expanded {
    background: linear-gradient(180deg, rgb(230 195 87) 50%, rgb(28 45 65) 50%);
}

.froggy-presale-box .text-danger {
    font-weight: bold !important;
    font-size: 1.1rem;
    margin-top:25px;
    display: inline-block;
}

.froggy-presale-box .block-danger {
    background: #250808;
    padding: 5px 10px;
    border-radius: 8px;
}

.presale-header {
  margin: 0;
}



.raisedstages {
  margin:0;
  background: linear-gradient(180deg, rgb(43 59 93) 41%, rgb(17 32 50) 35%);
    border-top: 6px solid #f1c03f;
    border-bottom: 6px solid #f1c03f;
  padding: 5px 0;
font-weight: normal;
    font-family: 'Lilita One';
    
}

.raisedstages p {
    margin: 0;
}

.stageprogress {
  margin:0;
  padding:0;
  /*background: linear-gradient(180deg, #FFF593, #fce46d);
  border-bottom: 5px solid #f1c03f;*/
  padding: 5px 0 0 0;
    
}


.froggy-box-header {
  background: linear-gradient(180deg, #FFF593, #fce46d); /* your cartoon gold */
  border-radius: 0.75rem 0.75rem 0 0;
  font-size: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.froggy-box-header .headericon {
    width: 42px;
    vertical-align: middle;
}

.froggy-box-header .headertext {
    font-weight: bold;
    margin: 0 5px 0 5px;
    display: inline-block;
    color: #665218;
}

/*.froggy-presale-box * {
  font-size: inherit;
}*/

.froggy-presale-box h2 {
    margin: 0;
    font-size: clamp(1.1rem, 3vw, 2rem);
    color: #ab8f3f;
    font-family: 'Outfit';
    width: 100%;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  border-radius: 10px 10px 0 0;
    padding: 5px;
}

.raised-title {
    font-weight:100;
    font-family: 'Outfit' !important;
}
.raised-info {
font-size: 1.5rem;
}

.stage-info {
    font-size: 0.8rem;
    color: #73611b;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.progress-pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.7rem, 2.2vw, 0.9rem);
    margin-top: 6px;
    margin-bottom: 15px;
    padding: 4px;
    color: #333;
    /* font-family: arial; */
    background: linear-gradient(180deg, #212c3f, #2f3a5a);
    color: white;
    border-radius: 5px;
    /* border: 2px solid #12214b; */
}

.progress-pricing-row span {
  flex: 1;
  text-align: center;
}

.progress-bar-wrapper {
  margin: 0.1rem 0;
  padding:0 1.5rem;
}

.progress-bar-bg {
  background: #ddd;
  height: 20px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #333;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22cc88, #11aa55);
  width: 0%;
  transition: width 0.4s ease-in-out;
}

.input-section {
  margin-top: 0.5rem;
  padding: 0 1.5rem;
  text-align: left;
}

.output-section {
  margin-top: 0.5rem;
  text-align: left;
}

label {
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.0rem, 80vw, 1.2rem);
}

/* Hide the native select but keep its function */
#payToken {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  cursor: pointer;
}

/* Custom styled wrapper */
.select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    padding: clamp(0.68rem, 1.2vw, 0.65rem) clamp(1rem, 2vw, 0.2rem);
    border: 2px solid #162132;
    border-radius: 8px;
    background: #fff;
    font-size: 1.2rem;
    min-width: 117px;
    max-width: 150px;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(180deg, #4b5e99, #212d40);
    box-shadow: 0 3px 0px rgba(0, 0, 0, 0.20);
    margin-bottom: 10px;
}

.select-wrapper img {
  height: 25px;
  width: 25px;
}

.select-wrapper:hover {
    background: #415579;
}

/* Optional: Add this to keep input + select side-by-side looking tight */
.pay-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#placeholderGroup {
    visibility: hidden;
    min-width: 475px;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.pay-group input[type="number"], input[type="email"] {
  flex: 2;
  min-width: 0;
}

.pay-group select {
  flex: 1;
  min-width: 0;
  max-width: 120px; /* limit dropdown width */
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.input-wrapper input {
  width: 100%;
  padding-right: 55px; /* space for token label */
  height: 42px;
}

#tokenSuffix {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-weight: bold;
  pointer-events: none;
}

input[type="number"],
input[disabled],
select {
    width: clamp(220px, 50vw, 350px);
    padding: clamp(0.4rem, 1.2vw, 0.4rem) clamp(0.9rem, 2vw, 0.2rem);
    font-size: 1.4rem;
    border-radius: 8px;
    border: 4px solid #ddc568;
    outline: 2px solid #162132;
    flex: 1;
    background: #17202f;
    color: white;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.20);
    margin-bottom:10px;
}

#cryptoTab input[type="number"]{
    flex: 1;
    height: 60px;
    font-size: 1.4rem;
    padding: clamp(0.4rem, 1.2vw, 0.4rem) clamp(0.9rem, 2vw, 0.2rem);
    min-width: 0;
}

input#stakeAmount {
    margin-bottom: 0;
}

input[type="email"],
input[type="text"]
{
    width: clamp(220px, 50vw, 350px);
    padding: clamp(0.4rem, 1.2vw, 0.4rem) clamp(0.9rem, 2vw, 0.2rem);
    font-size: 1.5rem;
    border-radius: 8px;
    border: 4px solid #ddc568;
    outline: 2px solid #162132;
    flex: 1;
    background: #17202f;
    color: white;
}

.pay-group input[type="text"]
{
 margin-top: 10px;
}

#signup-view input[type="email"],
#signup-view input[type="text"],
#guest-view input[type="text"] {
  width: 100% !important;
  max-width: 100%;
}
input[type="number"]::placeholder,
input[type="email"]::placeholder{
    color: #fff;
}


input[id="youGet"]
{
margin-left: 0;
}

select {
  width: 100px;
}

.wallet-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    /* margin-bottom: 0.4rem; */
    color: #352e0b;
    /* background: #9d8c3b; */
    padding: 6px 7px;
    border-radius: 5px;
    margin-top: 3px;
}

.wallet-address {
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-balance {
  color: #352e0b;
}

.pay-balance {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.maxBtnContainer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.maxBtn {
    font-size: 0.6rem;
    background: #d69d00;
    color: white;
    padding: 0.3rem 0.7rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.maxBtn:hover {
  background: #ffd493;
}

.max-mobile-btn {
    position: absolute;
    right: 13px;
    top: 43%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    padding: 4px 8px;
    background: #9d7d29;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}

.max-mobile-btn:hover {
  background: #e9b114;
}

.pLedger,
.pStaking,
.pAffiliate {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #664500;
    padding: 0;
    border: 4px solid #1a2333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;               /* 💥 Prevent text/icon from wrapping */
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.20);
        cursor: pointer;
    transition: background 0.2s ease-in-out;
}


.pLedger {
    background: linear-gradient(180deg, #ffba00, #966803);
    margin-left: 10px;
}

.pStaking {
    background: linear-gradient(180deg, #ffba00, #966803);
    margin-left: 0px;
}

.pAffiliate {
    background: linear-gradient(180deg, #ffba00, #966803);
    margin-left: 0px;
}

.pLedger:hover,
.pStaking:hover,
.pAffiliate:hover {
  background: #fcbc6e;
}

.text-gold {
  color: #d4af37;
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
}

.text-limegreen {
 color: rgb(59 219 38) !important;
}

.text-teallike {
color: #56eeee !important;
}

.border-gold {
  border: 1px solid #d4af37 !important;
  border-radius: 10px;
}

.howaffiliate {
    font-family: 'Outfit';
}
.howaffiliate tbody tr td  {
    padding: 5px 0 0 17px;
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
}

/* Affiliate tooltip */

.custom-tooltip-box {
  display: none;
  position: absolute;
background-color: #d4af37;
    color: #1a1e2d;
    padding: 4px 10px;
    border-radius: 6px;
    border: 2px solid #6f4c00;
    z-index: 9999;
    font-size: 0.65rem;
    max-width: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    white-space: normal;
    text-align: center;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
}

/* Optional triangle arrow pointing down */
.custom-tooltip-box::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #6f4c00 transparent transparent transparent;
}


.custom-tooltip-box.visible {
  display: block;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
  margin: 0;
}

.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  position: absolute;
  bottom: 110%; /* Above the button */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 99;
  pointer-events: none;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.output-group {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* optional spacing */
}

.output-group input[type="text"] {
  flex: 1;
  height: 60px; /* match your image height if needed */
  font-size: 1.4rem;
  padding: clamp(0.4rem, 1.2vw, 0.4rem) clamp(0.9rem, 2vw, 0.2rem);
  min-width: 0;
}

.token-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}


#maxBtn:disabled {
  opacity: 0.4;
  pointer-events: none;
  background: #ccc;
  color: #888;
  cursor: not-allowed;
  border: 1px solid #aaa;
}

.howtobuy-presale-btn {
    background: linear-gradient(180deg, #ffba00, #966803);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #664500;
    padding: 2px 5px;
    border: 2px solid #1a2333;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    font-family: 'Outfit';
    text-decoration: none;
}

.howtobuy-presale-btn:hover {
    background: #fcbc6e;
}

.howtobuy-presale-txbtn {
  text-decoration: none;
  color: inherit;
  font-family: 'Outfit';
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-text {
  text-decoration: underline;
}

.howtobuy-presale-txbtn:hover .link-text {
  text-decoration: none;
}

#buyOrConnectBtn {
    margin: 1rem auto 0 auto;
    padding: 0.8rem 1.5rem;
    width: 90%;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffe600, #ffaa00);
    color: #1c1c1c;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
}

#buyOrConnectBtn:hover {
  transform: scale(1.05);
  background: #fff48d;
}

.buy-note-wrap {
  display: flex;
  align-items: flex-end; /* ⬅ Aligns all children to bottom */
  gap: 5px;
  padding: 12px;
  flex-wrap: nowrap;
}

.pLedger,
.pStaking {
  margin-top: 0; /* ⬅ Remove vertical margin that pushed them down */
}

.label-short {
  display: none;
}

.status-indicator {
    width: 60px;
    height: 60px;
    background: #ffffff22;
    border: 4px solid #1a2333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-left: auto;
    margin-right: 12px;
}
.status-indicator.connected {
  color: #90d27b; /* Greenish when connected */
}

.status-indicator.disconnected {
  color: #ffaf00; /* Reddish when not connected */
}

.buy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff22;
  border-radius: 50%;
  margin-left: 8px;
  margin-bottom: 0;
  padding: 0;
}


.buy-status {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.wallet-connected {
    background: #269c00;
}
.wallet-disconnected {
    background: #000;
}

.cointotal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(180deg, #212c3f, #161e2e);
    border-radius: 0 0 15px 15px;
    padding: 10px 20px;
    margin: -24px 0 0 0;
    width: 100%;
    max-width: clamp(287px, 74vw, 509px);
    z-index: -1;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.8);
    color: white;
    font-family: 'Outfit', sans-serif;
    gap: 8px;
}

.cointotal_outcome {
  display: inline-block;
  font-family: 'Lilita One', cursive;
  white-space: nowrap; /* 👈 prevents wrapping into multiple lines */
  overflow: hidden;    /* 👈 hides any overflow if it somehow overflows */
  text-overflow: ellipsis; /* 👈 optional: adds "..." if needed */
  max-width: 100%;
}

.buy-mode-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0 10px 0;
    padding: 0 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.buy-tab-content {
    min-height: 417px;
    transition: min-height 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.tab-button {
  background: linear-gradient(180deg, #3f5a83, #1c2d41);
  border: 3px solid #d7c675;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.tab-button.active {
  background: linear-gradient(180deg, #FFF593, #fce46d);
  color: #75621d;
  border-color: #ffda6f;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.buy-tab-content {
  width: 100%;
}

.email-verify-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cardTab {
  padding: 0 1.5rem;
}

.card-text {
    font-size: 1.1rem;
    color: #162031;
    font-family: 'Outfit';
}

.moonpay-reveal-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.moonpay-reveal-wrapper.revealed {
  max-height: 1000px; /* just needs to be larger than the contents */
}

.moonpay-reveal-content {
  padding: 2px 0; /* ⛑ tiny top/bottom buffer prevents outline bleed */
}

#cardTab .terms-agreement {
    margin-top: 45px; 
    color: #ccc;
}

#cardTab #terms-agreement {
    font-size: 0.9rem;
}


#sendCodeBtn, #verifyCodeBtn, #whiteListBtn {
  min-width: 117px;
  padding: 0.6rem 1rem;
  background: #ffe600;
  color: #1c1c1c;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

#whiteListBtn {
    min-width: clamp(117px, 50vw, 349px) !important;
}

.whiteListMargin { margin-bottom: 10px !important; }

#launchMoonpayBtn {
    margin-top: -10px;
    font-size: 1.1rem;
    min-width: 117px;
    padding: 0.6rem 1rem;
    background: linear-gradient(180deg, #9dd480, #27411a);
    color: #2d401d;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    /* transition: background 0.2s ease; */
    border: 3px solid #86a774;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

#launchMoonpayBtn:hover {
    background: linear-gradient(180deg, #9dd480, #3e6729);
    border: 3px solid #3d5c2c;
}

#moonpayInputsWrapper .moonpay-reveal-content {
  transition: all 0.4s ease;
}

#moonpayInputsWrapper:not(.revealed) .moonpay-reveal-content {
  visibility: hidden;
  pointer-events: none;
}

.spinner {
  border: 2px solid #fff;
  border-top: 2px solid #3283a6;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#sendCodeBtn:hover, #verifyCodeBtn:hover, #whiteListBtn:hover {
  background: #fff48d;
}

#sendCodeBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#sendCodeBtn.sending {
  opacity: 1 !important;
  cursor: default;
}

.email-verify-section input[type="email"],
.email-verify-section input[type="text"] {
  background: #282100;
  color: white;
  font-size: 1.1rem;
  border: 3px solid #ddc568;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}

.email-verify-section button {
  background: #ffe600;
  color: #1c1c1c;
  font-weight: bold;
  padding: 0.6rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.email-verify-section button:hover {
  background: #fff48d;
}

.fade-out-smooth {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hidden-collapse {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.gone-but-there {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cdn-modal-overlay {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Londrina Solid', sans-serif;
}

.cdn-modal-content {
  max-width: 400px;
}
    
/* Marquee Container */
.marquee {
    position: fixed;
    display: flex;
    /* overflow: hidden; */
    /* user-select: none; */
    /* gap: var(--gap); */
    width: 100%;
    background: rgb(18 46 67);
    padding: 0px 0;
    /* top: 130px; */
    z-index: 1002;
    top: 0;
    left: 0;
    height: var(--marquee-height);
}

.marquee__content {
    font-size: 1.2rem;
    font-family: 'Londrina Solid';
    color: white;
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--speed) linear infinite;
    margin: 10px;
    
}

/* Marquee Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

:root {
    --gap: 2rem; /* Space between items */
    --speed: 35s; /* Base speed */
    --marquee-height: 45px; /* Marquee default height */
}

/* Sighting Marquee */

.sighting_marquee-container {
    overflow: hidden;
    background: #171e2e;
    padding: 12px 0;
    border-top: 4px dashed #384157;
    border-bottom: 4px dashed #384157;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.sighting_marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: sightingScroll 60s linear infinite;
}

.sighting_marquee-track img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.sighting_marquee-track a:hover img {
  transform: scale(1.1);
}

.sighting_marquee-container:hover .sighting_marquee-track {
  animation-play-state: paused;
}

@keyframes sightingScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@keyframes characterShake {
    0% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-2px) rotate(-0.3deg); }
    50% { transform: translateX(-50%) translateY(0) rotate(0.3deg); }
    75% { transform: translateX(-50%) translateY(2px) rotate(-0.3deg); }
    100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
}

@keyframes floatUpDown {
0% { transform: scale(1) translateY(20%); }
50% {transform: scale(1) translateY(23%); }
100% {transform: scale(1) translateY(20%); }

    
}

@keyframes shadowPulse {
    0% { transform: translateX(-50%) scaleX(0.8); opacity: 0.25; }
    50% { transform: translateX(-50%) scaleX(1); opacity: 0.4; }
    100% { transform: translateX(-50%) scaleX(0.8); opacity: 0.25; }
}




.character-shadow {
    position: absolute;
    bottom: 310px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%; 
    height: 30px; 
    background: rgba(0, 0, 0);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1; 
    animation: shadowPulse 4s infinite ease-in-out;
}

.shattered-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800" preserveAspectRatio="none"><path d="M20 10 L100 200 L300 150 Z" stroke="white" stroke-width="2" fill="%23FFFFFF0A" /><path d="M400 50 L600 400 L700 100 Z" stroke="white" stroke-width="2" fill="%23FFFFFF" /><path d="M800 20 L900 300 L1100 150 Z" stroke="white" stroke-width="2" fill="rgba(255,255,255,0.2)" /></svg>') no-repeat center center;
    background-size: cover;
    z-index: 5; /* Ensure it's above the background */
}

.home-logo {

    position: absolute;
    top: min(30vh, 20%);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: min(110vh, 1100px);
    max-width: 100%;
    z-index: 2;
    pointer-events: none;
    animation: floatUpDown 4s infinite ease-in-out;
    
}

.logo {
    width: 100%; /* Adjust based on your character size */
    height: auto;
    user-select: none;
    pointer-events: none; /* Prevents interactions */
}

.character {
    width: 100%; /* Adjust based on your character size */
    height: auto;
    user-select: none;
    pointer-events: none; /* Prevents interactions */
}

#home::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 110px;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400"><path fill="%232a3347" fill-opacity="1" d="M0,192L0,128L90,128L90,288L180,288L180,224L270,224L270,128L360,128L360,96L450,96L450,64L540,64L540,160L630,160L630,256L720,256L720,256L810,256L810,128L900,128L900,160L990,160L990,256L1080,256L1080,288L1170,288L1170,64L1260,64L1260,192L1350,192L1350,64L1440,64L1440,400L1350,400L1350,400L1260,400L1260,400L1170,400L1170,400L1080,400L1080,400L990,400L990,400L900,400L900,400L810,400L810,400L720,400L720,400L630,400L630,400L540,400L540,400L450,400L450,400L360,400L360,400L170,400L170,400L180,400L110,400L20,400L20,400L0,400L0,320Z"></path><rect x="10" y="140" width="20" height="20" fill="%23212839" /><rect x="35" y="140" width="20" height="20" fill="%23fefeb5" /><rect x="60" y="140" width="20" height="20" fill="%23fefeb5" /><rect x="10" y="185" width="20" height="20" fill="%23fefeb5" /><rect x="35" y="185" width="20" height="20" fill="%23fefeb5" /><rect x="60" y="185" width="20" height="20" fill="%23212839" /><rect x="10" y="230" width="20" height="20" fill="%23fefeb5" /><rect x="35" y="230" width="20" height="20" fill="%23fefeb5" /><rect x="60" y="230" width="20" height="20" fill="%23212839" /><rect x="190" y="230" width="30" height="25" fill="%23212839" /><rect x="190" y="263" width="30" height="25" fill="%23fefeb5" /><rect x="280" y="140" width="75" height="25" fill="%23fefeb5" /><rect x="280" y="180" width="75" height="25" fill="%23fefeb5" /><rect x="280" y="180" width="75" height="25" fill="%23fefeb5" /><rect x="278" y="218" width="78" height="28" fill="%23212839" /><rect x="380" y="115" width="61" height="20" fill="%23212839" /><rect x="380" y="155" width="61" height="20" fill="%23212839" /><rect x="380" y="195" width="61" height="20" fill="%23fefeb5" /><rect x="465" y="150" width="24" height="50" fill="%23fefeb5" /><rect x="502" y="148" width="30" height="58" fill="%23212839" /><rect x="465" y="80" width="25" height="50" fill="%23fefeb5" /><rect x="502" y="80" width="25" height="50" fill="%23fefeb5" /><rect x="560" y="180" width="19" height="30" fill="%23fefeb5" /><rect x="598" y="180" width="19" height="30" fill="%23fefeb5" /><rect x="557" y="224" width="63" height="30" fill="%23212839" /></svg>') repeat-x bottom;
filter: drop-shadow(0px -6px 4px rgba(0, 0, 0, 0.3)); /* reverse the shadow */
z-index: 3;
}



/* About Section */
#about {
    position: relative;
    background: linear-gradient(180deg, rgba(42, 51, 71, 1) 0%, rgba(94, 112, 143, 1) 100%);
    overflow: hidden;
}


/* Background Image Anchored at Bottom
#about::after {
    content: "";
    position: absolute;
    bottom: -170px;
    left: 0;
    right: 0;
    height: 100%;
    background: url('/images/aboutgroup.webp') no-repeat bottom center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
} */

.about-container {
    
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    align-items: center; /* Vertically center */
    justify-content: center;
    gap: 20px; /* Space between columns */
    max-width: 1200px; /* Keeps content manageable */
    margin: 0 auto; /* Centers the whole section */
    padding: 60px 20px; /* Adjust as needed */
    border: 0px solid red;
    position: relative;
    z-index: 2;
}

.about-image {
    display: flex;
    justify-content: flex-end;
    filter: drop-shadow(0px 10px 2px rgba(0, 0, 0, 0.1))
}

.about-graphic img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-text {
    background: rgb(56 63 84);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: white;
    text-align: left;
    border: 0px solid red;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.8);
}

.about-text h3 {
    font-family: 'Lilita One', cursive;
    font-weight: normal;
    font-size:  1.6rem;
    color: #c8f86d;;
    text-align: center;
    
}
.about-text p {
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    font-size:  1.2rem;
    color: #fff;
    line-height: 1.6rem;
    
}

.about-text p.why {
    font-family:  'Londrina Solid';
    font-weight: 100;
    font-size:  1.1rem;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .about-text .frogbox {
    background: #2c3245;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align:left;
}*/

.about-text .frogbox {
  background: #2c3245;
  border-radius: 5px;
  padding: 10px;
  font-family:  'Londrina Solid';
  font-weight: 100;
  font-size:  1.1rem;
  color: #fff;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.frog-row {
  display: flex;
  flex-wrap: nowrap;
}

.frog-left,
.frog-right {
  white-space: nowrap; /* ✅ Prevents line wrapping */
  display: flex;
  align-items: flex-start;
}

.frog-left {
  width: 40%;
}

.frog-right {
  width: 60%;
}

.about-text .why {
  display: flex;
  font-family: 'Londrina Solid';
  align-items: flex-start;
  margin-bottom: 1rem;
}

.about-text .check {
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-right: 0.6rem;
  line-height: 1.3;
}

.about-text .why-text {
  line-height: 1.4;
  font-family:'Outfit', sans-serif;
  font-size: 1rem;
}

.about-text .smartvest {
  display: flex;
  font-family: 'Londrina Solid';
  align-items: flex-start;
}


.list-icon-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
}

.list-icon {
  flex-shrink: 0;
  font-size: 1.2em;
  line-height: 1;
  padding-top: 2px;
}

.list-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

#news, #poll {
    position: relative;
    background: linear-gradient(180deg, rgba(42, 51, 71, 1) 0%, rgba(94, 112, 143, 1) 100%);
    overflow: hidden;
    z-index: 1;
}


#archiveList, #archiveListMobile {
  padding-left: 0;
  list-style: none;
  position: relative;
}

#archiveList a, #archiveListMobile a {
  text-decoration: none;
  color: white;
}

#archiveList a:hover, #archiveListMobile a:hover {
  text-decoration: none;
}

.article-content > p:not([style*="text-align"]) {
  text-align: left;
}

.archiveListItems {
    background: #475164;
    margin-bottom: 0px;
    border-radius: 5px;
    padding: 5px;
    display: block;
    font-family: 'Outfit';
    margin-left: 9px;
    border: 3px solid #cccccc;
}

.archiveListItems:hover {
    background: #171e2f;
    border: 3px dashed #656f86;
}

.archiveText {
    font-family: 'Quicksand', sans-serif;
}

.tree-branch {
  padding-left: 20px;
  margin-left: 10px;
  margin-top: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.tree-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  width: 3px;
  background-color: #ccc;
  z-index: 999;
}

.tree-leaf {
  padding-left: 12px;
  margin: 4px 0;
  position: relative;
}

.tree-leaf::before {
    content: "└─";
    position: absolute;
    left: 4px;
    color: #aaa;
    font-family: monospace;
    top: 13px;
}

.tree-leaf a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.tree-leaf a:hover {
  text-decoration: underline;
  color: #0056b3;
}


.archive-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.archive-collapse.expanded {
  max-height: 500px; /* adjust if needed */
  opacity: 1;
}

/* Toggle icon spacing */
.searcharchive .toggle-icon {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 5px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem; /* provides consistent spacing between items */
    justify-content: center;
}

.news-btn {
    background: linear-gradient(135deg, #ffe600, #ffaa00);
    border: 3px solid #b98e27;
    color: #5e4d1e;
    padding: 8px 16px;
    font-family: 'Outfit';
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.news-btn:hover {
    background: #f4e2be;
    color: #0c1424;
    text-decoration: none;
}

.news-title {
    font-family: 'Londrina Solid';
    font-weight: bold;
    color: #414e67 !important;
}

.news-author {
    font-family: 'Lilita One';
    color: #94711c !important;
}

#news .article-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

#news .pagination,
#poll .pagination {
  justify-content: center;
  margin-top: 2rem;
  gap: 6px;
}

#news .page-item .page-link,
#poll .page-item .page-link {
    background: linear-gradient(135deg, #ffe600, #ffaa00);
    border: 3px solid #b98e27;
    color: #5e4d1e;
    padding: 8px 16px;
    font-family: 'Outfit';
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

#news .page-item.active .page-link,
#news .page-item .page-link:hover,
#poll .page-item.active .page-link,
#poll .page-item .page-link:hover {
    background: #f4e2be;
    color: #0c1424;
    text-decoration: none;
}

.vote-card {
  display: inline-block;
  width: 180px;
  padding: 20px;
  border: 3px solid #ccc;
  border-radius: 20px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.vote-card .emoji {
  font-size: 36px;
  margin-bottom: 10px;
}

.vote-card .label {
  font-weight: bold;
  font-size: 18px;
}

.vote-card:hover {
  transform: scale(1.05);
  border-color: #ffcc00;
}

.vote-card.selected {
  border-color: #ffcc00;
  background: #fff8e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.result-row {
  margin-bottom: 18px;
}
.result-label {
  font-weight: bold;
  margin-bottom: 4px;
}
.bar-wrapper {
  position: relative;
  background: #ddd;
  border-radius: 4px;
  height: 28px;
  overflow: hidden;
}
.bar {
  height: 100%;
  color: #fff;
  line-height: 28px;
  font-size: 13px;
  padding-left: 8px;
}

.bar.red    { background-color: #e74c3c; }
.bar.blue   { background-color: #3498db; }
.bar.green  { background-color: #2ecc71; }
.bar.orange { background-color: #f39c12; }
.bar.purple { background-color: #9b59b6; }
.bar.teal   { background-color: #1abc9c; }


/* How to Buy Section */
#how-to-buy {
    background-color: #d8e1f1;
}

#how-to-buy p {
  font-family: 'Londrina Solid';
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 100;
}

#how-to-buy .tab-content {
  border: none !important;
}

#how-to-buy .nav-tabs {
border-bottom: 5px solid #a8b0c4 !important;
  justify-content: center;
  margin-top: 20px;
}

#how-to-buy .nav-tabs .nav-item {
    margin: 1px 5px;
}

#how-to-buy .nav-tabs .nav-link {
    color: #1c3c36 !important;
    background-color: #aab0c2 !important;
    padding: 12px 20px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    font-family: 'Londrina Solid';
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: bold;
    border-top: 5px solid transparent !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-bottom: none !important;
}

#how-to-buy .nav-tabs .nav-link.active {
  background-color: #7bd9e7 !important;
  color: #003f36 !important;
  border-top: 5px solid #aab0c2 !important;
  border-left: 5px solid #aab0c2 !important;
  border-right: 5px solid #aab0c2 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  font-weight: bold;
  position: relative;
  z-index: 2; /* Lift it above the black line */
}

#how-to-buy .nav-tabs .nav-link:hover {
  background-color: #e1f7f3;
  color: #003f36;
}

.toggle-collapse-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #41605b;
  padding: 5px;
  border-radius: 5px;
  color: white !important;
  line-height: 1;
  transition: transform 0.3s ease;
}

.toggle-collapse-icon[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.buy-steps {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.buy-steps li {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f1f8f4, #e0f7ef);
  border: 3px dashed #32635b;
  border-radius: 15px;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.buy-steps .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: radial-gradient(circle at center, #7bd9e7, #52c1c1);
  color: #003f36;
  font-family: 'Londrina Solid';
  font-size: 1.5rem;
  padding: 10px 23px;
  border-radius: 50%;
  border: 3px solid #32635b;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.2);
}

.buy-steps h4 {
  font-family: 'Lilita One', cursive !important;
  color: #32635b;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.buy-steps p {
  font-size: 1.1rem;
  color: #2c3e50;
}

.buy-steps li ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.buy-steps li ul li {
    background: #567160;
    padding: 4px 11px;
    /* margin: 0; */
    /* box-shadow: none; */
    font-size: 1.05rem;
    /* line-height: 1.4; */
    font-family: 'Outfit';
    border: 3px solid #416051;
    margin-bottom: 5px;
    text-align: left;
    color: white;
    display: flex;
    gap: 6px;
}

.buy-button, .copy-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #32635b;
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.buy-button:hover, .copy-button:hover {
  background-color: #7bd9e7;
  color: #003f36;
}

.buy-tabs .arrow {
  font-size: 1.5rem;
  color: #263a36 !important;
  opacity: 0.8;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wallet-card {
    display: flex !important;
    align-items: center !important;
    background-color: #446453 !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    color: #fff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2) !important;
    flex-wrap: wrap !important;
    background: linear-gradient(270deg, #416051 -50%, #e0f7ef) !important;
}

.wallet-icon {
  flex: 0 0 auto;
  margin-right: 12px;
}

.wallet-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.wallet-details {
  flex: 1;
  text-align: left;
}

.wallet-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #3e6955;
}

h4.wallet-name {
    font-family: 'Outfit', sans-serif;
}

.wallet-capabilities {
    margin: 6px 0;
    padding-left: 0;
    list-style: none;
    font-size: 0.95rem;
    background: none;
}

.wallet-capabilities li {
    margin: 2px 0;
    border: none !important;
    color: #325143 !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none;
    line-height: 1.3;
}

.wallet-link {
    background: linear-gradient(135deg, #85a195, #416051);
    border: 0px solid #ddf4ec;
    color: #d9f0e8;
    padding: 0px 7px;
    font-family: 'Quicksand';
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    text-transform: ca;
    display: inline-block;
    margin-top: 10px;
}

.wallet-link:hover {
    background: #314d41;
    color: #ffffff;
    text-decoration: none;
}


/* Tokenomics Section */

#tokenomics {
  background: url(../images/fgenlab.webp) no-repeat center center / cover;
  position: relative;

}

#tokenomics .chart-container {
  background: linear-gradient(180deg, rgba(42, 51, 71, 0.2) 60%, rgba(94, 112, 143, 0.9) 100%);
  border-radius: 15px 15px 30px 30px;
  border: 10px solid #103b57;
  filter: drop-shadow(-6px 8px 3px rgba(0, 0, 0, 0.3));
  width: 100%;
  min-height: 600px;
}

#tokenomics .frog-wrapper {
    margin-top: auto;
}

.chart-col
 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.frog-col 
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.frog-col {
  padding-top: 20px;
  padding-bottom: 20px;
}

#tokenomicsRow {
    align-items: stretch;
}

#tokenomics .col-md-5 {
  width: 60% !important; /* Chart column */
  flex: 0 0 60% !important;
}

#tokenomics .col-md-7 {
  width: 40% !important; /* Frog column */
  flex: 0 0 40% !important;
}


.frog-image {
  max-height: 377px;
  width: auto;
  height: auto;
  border-radius: 10px;
  animation: floatUpDown 7s infinite ease-in-out;
}

@keyframes bankerUpDown {
  0% { transform: scale(1) translateY(-4%); }
  50% { transform: scale(1) translateY(2%); }
  100% { transform: scale(1) translateY(-4%); }
}

.frog-banker {
  max-height: 850px;
  width: auto;
  height: auto;
  border-radius: 10px;
  animation: bankerUpDown 7s infinite ease-in-out;
}

.tokenomics-info-box {
    background: linear-gradient(180deg, rgba(42, 51, 71, 0.8) 60%, rgba(94, 112, 143, 0.9) 100%);
    color: #fff;
    border: 8px solid #203955;
    padding: 15px 20px;
    border-radius: 15px;
    margin-top: auto;
    margin-bottom: -9px; /* Push it downward inside full-height column */
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: all 0.3s ease-in-out;
      height: 260px;
  max-height: 260px;
  flex-shrink: 0;
  flex-grow: 0;
}

.tokenomics-info-box::-webkit-scrollbar-thumb {
  background-color: #ffcc00 !important;
  border-radius: 10px;
  border: 2px solid transparent; /* Optional: adds spacing */
  background-clip: content-box;
}

.tokenomics-info-box::-webkit-scrollbar {
  width: 10px;
}
.tokenomics-info-box::-webkit-scrollbar-thumb {
  background-color: #ffcc00;
  border-radius: 4px;
}

.tokenomics-info-box h4 {
  color: #ffcc00;
  font-size: 1.4rem;
  font-family: 'Londrina Solid';
  margin-bottom: 15px;
}

.tokenomics-info-box ul {
  list-style: none;
  padding-left: 0;
}

.tokenomics-info-box li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* News section */
.news-thumb {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  margin: 0 auto;
}

/* Roadmap Section */

#roadmap {
    
    position: relative;
    background: repeating-linear-gradient(45deg, #90BD89, #90BD89, #619D58 4px, #619D58 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 10px solid #41683B;
    border-bottom: 10px solid #41683B;
    border-left: none;
    border-right: none;
    box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.3), /* upward */
            0 6px 12px rgba(0, 0, 0, 0.3);  /* downward */
}

.roadmap-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* 👈 Important: ensures top alignment! */
  gap: 25px;
  margin: 60px auto 0 auto;
  text-align: center;
  max-width: 2000px;
}

.stage-box {
    flex: 1 1 300px; /* allow it to shrink and grow */
    max-width: 315px; /* 90% of the 100% */
    min-width: 240px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(42, 51, 71, 1) 0%, rgba(94, 112, 143, 1) 100%);
    border-radius: 15px 15px 30px 30px;
    border: 3px solid #252228;
    filter: drop-shadow(-6px 8px 3px rgba(0, 0, 0, 0.3));
    padding-top: 40px;
    border-top: 6px solid #1b2030;
    border-left: 4px solid #1b2030;
    border-right: 4px solid #1b2030;
    /*height: 720px;*/
    /*max-height: 750px;*/
    z-index: 2;
    
}
.stage-box:hover {
    /*animation: wiggle 0.3s ease-in-out;*/
}

.stage-box:nth-child(1) {
    background: radial-gradient(circle at top left, #d8f5a2, #a1e887);
}
.stage-box:nth-child(2) {
    background: radial-gradient(circle at top right, #ffdfb4, #ffb870);
}
.stage-box:nth-child(3) {
    background: radial-gradient(circle at bottom left, #b2e0ff, #7bc9ff);
}

.stage-box h3 {
    font-size: 2.25rem;
    color: #fff;
    background: #32635b;
    display: inline-block;
    padding: 5px 35px;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #000;
    font-family: 'Londrina Solid', sans-serif;
}

.stage-box .title {
    font-weight: bold;
    font-family: 'Londrina Solid';
    font-size: 1.08rem;
    color: #41605b;
}
.stage-box ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
}

.stage-box ul li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 18px;
    font-size: 1.26rem;
    color: #32635b;
    /* font-weight: bold; */
    line-height: 1.3;
    display: flex;
    align-items: center;
    font-family: 'Londrina Solid';
}

.stage-box ul li.checked i {
    color: #32635b;
    font-size: 1.44rem;
    padding-right: 7px;
}

.stage-box ul li.uchecked i {
    color: #32635b;
    font-size: 1.44rem;
    padding-right: 7px;
}

.stage-box ul li.inprogress i {
  color: #41605b;; /* golden yellow */
  font-size: 1.44rem;
  padding-right: 7px;
}

.stage-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #00675a;
    font-size: 2.25rem;
    font-weight: bold;
    font-family: 'Londrina Solid', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 6px dashed #32635b;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px #32635b;
    text-shadow: 1px 1px 0 #000;
}

.phase-date {
    font-family: 'Lilita One';
    color: #4c7a46;
    font-size: 1.0rem;
}

@keyframes wiggle {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(1deg) scale(1.05); }
  50% { transform: rotate(-1deg) scale(1.05); }
  75% { transform: rotate(1deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1); }
}


.roadmap-item {
  position: relative;
  cursor: pointer;
}

.roadmap-line {
    width: 70px;
    height: 4px;
    border-top: 7px dashed #32635b;
    transform: rotate(25deg);
    margin: 0 -35px;
    opacity: 0.8;
    align-self: center;
    flex-shrink: 0;
    z-index: 1;
}

.roadmap-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    /*left: 50%;*/
    /*transform: translate(-50%, -5px);  Center horizontally and nudge up */
    background: #107060;
    color: white;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
    white-space: pre-wrap;
    max-width: 360px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 5px dashed #004536;
    pointer-events: none;
    word-wrap: break-word;
}

.roadmap-item.active .roadmap-tooltip {
  display: block;
}

/* Crew Missions Section */

.crewmission-container {
    margin-top: 60px !important;
}

#bar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.bar-front {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bar-image {
    position: absolute;
    inset: 0;
    background-image: url(/images/frogen_frontdoor.webp);
    background-size: cover;
    background-position: center 10%;
    z-index: 1;
    opacity: 1;
    background-repeat: no-repeat;
}

.bar-doors {
  position: absolute;
  z-index: 2;
  /* Placeholder for animated doors if needed later */
}

.bar-sign,
.bar-message,
#barCountdown {
  position: absolute;
  z-index: 3;
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: 1.5rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
}

.bar-sign {
    top: 0%;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    background: #171615;
    border: 0px solid #63452a;
    border-radius: 0 0 15px 15px;
    text-transform: uppercase;
    font-family: 'Lilita One';
    font-weight: 100;
    box-shadow: 3px 3px 4px black;
}

.bar-message {
    top: 25%;
    max-width: 100%;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-family: 'Lilita One';
    text-shadow: 3px 5px 5px black;
    color: #ffffff;
}
#barCountdown {
  top: 70%;
  font-size: 1.25rem;
}

#crewmissions {
    position: relative;
}

#crewmissions #crewmissions-content.loading {
  pointer-events: none;
  opacity: 0.4;
}

#crewmissions .crew-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 204, 0, 0.2);
  border-top-color: #ffcc00;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#crewmissions #missionsTabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around; /* Even spacing */
    border-bottom: 2px solid #ffcc00; /* Custom underline color */
    
}

#crewmissions .dot-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
     animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}

.x-follow-prompt {
    background: #1c1c1c;
    border: 1px dashed #888;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}
.x-follow-prompt a {
    color: #1da1f2;
    text-decoration: underline;
}

/* Make each tab take equal width */
#crewmissions #missionsTabs .nav-item {
    flex-grow: 1;
    text-align: center;
}

/* Improve tab appearance */
#crewmissions #missionsTabs .nav-link {
    color: white;
    background: transparent;
    /*transition: all 0.3s ease-in-out;*/
    padding: 12px 10px; /* Padding for touch targets */
}

/* Hover & active state */
#crewmissions #missionsTabs .nav-link:hover {
    
    color: #ffcc00 !important;
    background-color: rgba(255, 204, 0, 0.1) !important;
    border-bottom: 3px solid #ffcc00;
    border-top: 3px solid transparent;
    border-left: 0;
    border-right: 0;
}


#crewmissions #missionsTabs .nav-link.active {
    
    border-top: 3px solid transparent;
    border-bottom: 3px solid #ffcc00;
    border-left: 0px;
    border-right: 0px;
    background: #2c3245 !important;
}

#crewmissions {
    position: relative;
    background: url(../images/crewmissions.webp) no-repeat center center / cover;
    /*background-attachment: fixed; /* Prevents jumping */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /*min-height: 700px;  Adjust to your needs */
}

#crewmissions .col-md-7 {
    background: linear-gradient(180deg, rgba(42, 51, 71, 1) 0%, rgba(94, 112, 143, 1) 100%);
    border-radius: 15px;
    border: 3px solid #252228;
    filter: drop-shadow(-6px 8px 3px rgba(0, 0, 0, 0.3));
    padding-top: 50px;
    min-height: 525px;
    border-radius: 15px 15px 30px 30px;
    border-top: 6px solid #1b2030;
    border-left: 4px solid #1b2030;
    border-right: 4px solid #1b2030;
}

/* Frog Image */
#crewmissions .frog-wrapper {
    position: relative; /* Makes the frog a positioning anchor */
    display: inline-block;
}

#crewmissions img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    animation: floatUpDown 7s infinite ease-in-out;
}

#crewmissions .row {
    min-height: 500px;
}

/* Bonus Points */
#crewmissions #bonus-points {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px; /* Ensures a minimum width */
    max-width: 100%; /* Prevents overflow issues */
    padding: 10px 15px;
    text-align: center;
    font-family: 'Londrina Solid';
    font-size: clamp(0.8rem, 3vw, 1.6rem);
    /* font-weight: bold; */
    color: #ffcc00;
    border: 3px solid #242228;
    background-color: #2d3345;
    border-radius: 15px 15px 30px 30px;
    border-top: 6px solid #1b2030;
    border-left: 4px solid #1b2030;
    border-right: 4px solid #1b2030;
    padding: 10px 15px;
    z-index: 1;
    white-space: nowrap; /* Ensures it stays on one line */
}

#crewmissions #user-points {
    font-weight: 200;
    background: linear-gradient(180deg, rgb(11 12 14) 0%, rgb(33 38 51) 100%);
    padding: 5px 10px;
    border: 2px solid #363e55;
    border-radius: 5px;
    font-size: clamp(0.8rem, 4vw, 1.6rem);
}


/* Tab Group Shared Styling for Outer (#crewmissions) and Inner (#leaderboardTabs) */
#crewmissions .nav-tabs,
#leaderboardTabs {
    border-bottom: 2px solid #2c3245 !important;
}

/* Tab Links (nav-link) — Shared Styling */
#crewmissions .nav-tabs .nav-link,
#leaderboardTabs .nav-link {
    color: #fff !important;
    background-color: transparent !important;
    border-top: 3px solid transparent !important;
    border-bottom: 2px solid #2c3245 !important;
    border-left: 0;
    border-right: 0;
    padding: 12px 20px !important;
    margin-right: 5px !important;
    font-family: 'Outfit' !important;
    font-size: clamp(0.5rem, 3.2vw, 0.8rem) !important;
    font-weight: bold !important;
    transition: color 0.3s ease-in-out !important;
}

/* Hover Effect */
#crewmissions .nav-tabs .nav-link:hover,
#leaderboardTabs .nav-link:hover {
    color: #ffcc00 !important;
    background-color: rgba(255, 204, 0, 0.1) !important;
    border-top: 3px solid transparent !important;
}

/* Active Tab Styling */
#crewmissions .nav-tabs .nav-link.active,
#leaderboardTabs .nav-link.active {
    color: #ffcc00 !important;
    background-color: #282e3f !important;
    border-top: 3px solid #ffcc00 !important;
}

/* Optional Active Press (if needed) */
#leaderboardTabs .nav-link:active {
    background: rgba(255, 204, 0, 0.1) !important;
}

/* Tab Content Styling */
#crewmissions .tab-content,
#leaderboardTabs + .tab-content {
    border-top: none !important;
    background-color: transparent !important;
    padding: 15px !important;
}

/* Leaderboard Tab Container Box Styling */
#crewmissions #leaderboard {
    background: linear-gradient(180deg, rgb(33 40 58) 0%, rgba(94, 112, 143, 1) 100%);
    padding: 5px;
    border-radius: 15px 15px 30px 30px;
    border-top: 6px solid #1b2030;
    border-left: 4px solid #1b2030;
    border-right: 4px solid #1b2030;
}


/*  MISSIONS*/

/* Animations */

/* Unfinished Glow */

@keyframes pulseUnfinished {
0% {
    box-shadow: 0 0 12px rgb(68 244 239 / 0%);
}
50% {
    box-shadow: 0 0 12px rgb(68 244 239 / 41%);
}
100% {
    box-shadow: 0 0 12px rgb(68 244 239 / 0%);
    }
}

.coin-burst-container {
    position: fixed; /* not absolute */
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.coin {
    width: 24px;
    height: 24px;
    position: absolute;
    pointer-events: none;
    opacity: 1; /* <-- Start fully visible */
    z-index: 9999;
    transform: translate(0, 0) scale(1);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

@keyframes coin-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50px + 100px * var(--random-x)), -150px) scale(0.7);
        opacity: 0;
    }
}

/* Buttons */

#mute-sound-btn {
    background: none;
    border: none;
    color: #666;
    margin-left: 8px;
    font-size: 20px;
    cursor: pointer;
    vertical-align: middle;
    transition: color 0.3s, transform 0.2s;
}

#mute-sound-btn:hover {
    color: #999;
    transform: scale(1.2);
}

#crewmissions .mission-blocked {
    color: #d30000;
    font-weight: normal;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: not-allowed;
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Lilita One';
    color: #9b2727;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    /* box-shadow: 0 0 12px rgb(255 124 124 / 50%); */
    background: #2a2424;
    display: inline-block;
    }

#crewmissions .mission-completed {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: default;
    /* transition: background 0.3s ease-in-out, transform 0.2s; */
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Londrina Solid';
    /* background: linear-gradient(180deg, rgb(223 250 134) 0%, rgb(37 65 42) 100%); */
    color: #407a1e;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 12px rgb(140 255 124 / 50%);
    background: #e5f795;
    display: inline-block;
}  
#crewmissions .mission-claimed {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: default;
    /* transition: background 0.3s ease-in-out, transform 0.2s; */
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Londrina Solid';
    /* background: linear-gradient(180deg, rgb(223 250 134) 0%, rgb(37 65 42) 100%); */
    color: #407a1e;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 12px rgb(140 255 124 / 50%);
    background: #e5f795;
    display: inline-block;
    }
    
#crewmissions .mission-clock {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: default;
    /* transition: background 0.3s ease-in-out, transform 0.2s; */
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Londrina Solid';
    /* background: linear-gradient(180deg, rgb(223 250 134) 0%, rgb(37 65 42) 100%); */
    color: #651e7a;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 12px rgb(226 124 255 / 50%);
    background: #e795f7;
    display: inline-block;
    }
    
    
.mission-completed,
.mission-claimed {
    opacity: 0;
    animation: fadeInMissionText 0.5s forwards ease-out;
}

@keyframes fadeInMissionText {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

#crewmissions .mission-unfinished {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: default;
    /* transition: background 0.3s ease-in-out, transform 0.2s; */
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Londrina Solid';
    /* background: linear-gradient(180deg, rgb(223 250 134) 0%, rgb(37 65 42) 100%); */
    color: #1e5f7a;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 12px rgb(124 237 255 / 50%);
    background: #95ddf7;
    display: inline-block;
    animation: pulseUnfinished 2s infinite;
    }
    
#crewmissions    .mission-finished {
        color: #81d925;
    }

#crewmissions .mission-not-eligible {
   font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: default;
    min-width: clamp(160px, 7vw, 160px);
    font-family: 'Londrina Solid';
    background: linear-gradient(180deg, rgb(115 120 99) 0%, rgb(37 65 42) 100%);
    color: #434343;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.3));
    background: #bbbbbb;
    display: inline-block;
}

#crewmissions .claim-reward-btn {
    background: linear-gradient(180deg, rgb(150 238 64) 0%, rgb(110 164 36) 100%);
    color: #3a5d07;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    border: 3px solid #93c14d;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
    min-width: 160px;
    font-family: 'Londrina Solid';
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
    position: relative;
}

#crewmissions .claim-reward-btn:hover {
    background: linear-gradient(180deg, rgb(198 244 153) 0%, rgb(169 221 99) 100%);
    transform: scale(1.03);
}    

#crewmissions .claim-reward-btn:disabled {
    background: #888;
    color: #ccc;
    cursor: not-allowed;
}


#crewmissions .mission-blurb {
    position: absolute;
    background: white;
    border: 2px solid black;
    padding: clamp(6px, 1vw, 10px) clamp(10px, 1.5vw, 15px);
    font-weight: bold;
    border-radius: 10px;
    max-width: clamp(130px, 15vw, 200px);
    text-align: center;
    box-shadow: 3px 3px 0px black;
    z-index: 5;
    top: 30%; /* Adjust this to move it above the head */
    left: 15%; /* Adjust this for horizontal alignment */
    transform: translate(-50%, -100%);
    /*opacity: 1 !important;
    display: block !important;*/
}

/* Blurb Tail */
#crewmissions .mission-blurb .blurb-tail {
    position: absolute;
    bottom: -15px;
    left: 95%;
    transform: translateX(-100%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid black;
}

#crewmissions .mission-blurb .blurb-tail::after {
    content: "";
    position: absolute;
    top: -17px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 13px solid white;
}


/* Points Styling */
#crewmissions .mission-points {
    color: #ffcc00;
    font-weight: bold;
    margin-right:10px;
}

#crewmissions .missions-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}


/* Individual Mission Item */
#crewmissions .mission-item {
    background: #2c3245;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 3px solid transparent;
    transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Mission Hover Effect */
#crewmissions .mission-item:hover {
    border: 3px dashed;
    background: rgb(0 0 0 / 30%);
}

/* Mission Text Styling with Responsive Font Size */
#crewmissions .mission-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: bold;
    color: #ffffff;
    align-items: center; /* Align text properly */
    text-align:left;
}

/* Checkbox Styling */
#crewmissions .mission-checkbox {
    display: none; /* Hide default checkbox */
}

/* Custom Checkbox Wrapper */
#crewmissions .mission-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: not-allowed;
    position: relative;
    padding-left: 157px;
}

/* Custom Checkbox Styling */
#crewmissions .mission-checkbox-label::before {
    content: "\1F570";
    color: #828282;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 78px;
}

/* Checked State with Yellow Background and Visible Checkmark */
#crewmissions .mission-checkbox:checked + .mission-checkbox-label::before {
    /*  background-color: #575757;*/
    /* border-color: #ffcc00; */
    /* checkmark content: "\2713"; */
    content: "\1F570";
    color: #828282;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 78px;
}
/* Claim Button Styling */



#crewmissions h3.mission-section-heading {
    text-align: left; 
    font-size: clamp(1.1rem, 3vw, 1.5rem); 
    font-family:'Londrina Solid';
    color:#f4d044;
}

/* Login / Post */
.login-post-btn {
    background: linear-gradient(180deg, rgb(241 190 62) 0%, rgb(157 112 14) 100%);
    color: #5f5628;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
    min-width: 160px;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
}

.login-post-btn:hover {
    background: #edd680; /* Slightly darker yellow */
    /*transform: scale(1.03);*/
}

.login-post-btn:disabled {
    background: #888;
    color: #ccc;
    cursor: not-allowed;
}

/* Timer Styling */
.mission-timer {
    background: #ffcc00;
    color: #625520;
    font-family: 'Lilita One';
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    min-width: clamp(80px, 40vw, 160px);
    text-align: center;
    animation: fadeInMissionText 0.5s forwards ease-out
}

/* Top 10 Text */
.toprank {
    width: 50px; /* Fixed width for ranks */
    text-align: left;
    font-weight: bold;
    color: #ffcc00;
    font-family: 'Londrina Solid';
    font-size: 1.1rem;
    font-weight: 200;
}

/* Leaderboard Styling */

/* Leaderboard Container */
.leaderboard-container {
    max-height: 270px; /* Adjust height as needed */
    overflow-y: auto;  /* Enable vertical scrolling */
    padding-right: 10px; /* Avoid cutting off scrollbar */
}

/* Ensure scrollbar is styled nicely */
.leaderboard-container::-webkit-scrollbar {
    width: 8px;
}

.leaderboard-container::-webkit-scrollbar-thumb {
    background-color: #ffcc00;
    border-radius: 4px;
}

.leaderboard-container::-webkit-scrollbar-track {
    background-color: #2c3245;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Individual Leaderboard Item */
.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #2c3245;
    margin: 3px 0;
    border-radius: 6px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: bold;
    color: white;
    border: 2px solid transparent;
    transition: 0.3s ease-in-out;
    font-family: 'Londrina Solid';
    font-size: 1rem;
    font-weight: 100;
}

/* Hover Effect */
.leaderboard-item:hover {
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

/* Rank Styling */
.leaderboard-item .rank {
    width: 50px; /* Fixed width for ranks */
    text-align: left;
    font-weight: bold;
    color: #ffcc00;
}

/* Username Styling */
.leaderboard-item .username {
    flex-grow: 1; /* Allow username to take up available space */
    text-align: left; /* Align to the left */
    padding-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Points Styling */
.leaderboard-item .points {
    width: 150px; /* Fixed width for score */
    text-align: right;
    color: #ffcc00;
}

.leaderboard-item .points .reward {
    font-size:0.8rem;
    
}

/* Special Colors for Top 3 */
.leaderboard-item.gold {
    background: linear-gradient(135deg, #756300, #826800);
    color: black;
    border-color: #FFD700;
}

.leaderboard-item.silver {
    background: linear-gradient(135deg, #8e8e8e, #7c7c7c);
    color: black;
    border-color: #C0C0C0;
}

.leaderboard-item.bronze {
    background: linear-gradient(135deg, #9e6935, #703c0c);
    color: black;
    border-color: #CD7F32;
}

/* Dividers, between sections */

.divider.one {
    position: relative;
    background: #5f9c57;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.divider.one::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%235f9c57"></path></svg>') repeat-x;

    background-size: auto 100%;
    z-index: 1;
    transform: scaleY(-1);
    top: -49px;
    
}

.divider.one::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.2)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: 5px;
    z-index: 0;
    transform: scaleY(-1);
    top: -55px;
}

.divider.htb {
    position: relative;
    background: #d8e1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.divider.htb::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%23d8e1f1"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 1;
    transform: scaleY(-1);
    top: -49px;
    
}

.divider.htb::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.2)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: 5px;
    z-index: 0;
    transform: scaleY(-1);
    top: -60px;
}

.divider.htb_b {
    position: absolute; /* This is key */
    width: 100%;
    height: 100px;
    background: transparent; /* Ensure no background blocking */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2; /* Keep it above #crewmissions background */
}

.divider.htb_b::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%23d8e1f1"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 3; /* Ensure it stays visible */
}

.divider.htb_b::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.4)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: 10px;
    z-index: 0;
}

.divider.two {
    position: relative;
    height: 100px;
    background: #2d3345;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.divider.two::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%23d8e1f1"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 1;
}
.divider.two::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.4)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: 5px;
    z-index: 0;
}

.divider.three {
    position: absolute; /* This is key */
    width: 100%;
    height: 100px;
    background: transparent; /* Ensure no background blocking */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2; /* Keep it above #crewmissions background */
}

.divider.three::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%235f9c57"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 3; /* Ensure it stays visible */
}

.divider.three::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.4)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: 5px;
    z-index: 0;
}


.divider.normal_bottom {
    position: absolute;
    width: 100%;
    height: 100px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 21;
    transform: scaleY(-1);
    top: 10px;
}

.divider.normal_bottom::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%23d8e1f1"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 3;
    transform: scaleY(-2) scaleX(2);
}

.divider.normal_bottom::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.4)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: -15px;
    z-index: 0;
    transform: scaleY(-2) scaleX(2);
}

.divider-center {
  height: 60px; /* Adjust thickness of center band */
  background-color: #d8e1f1; /* Match the wave color or use a complementary color */
}

.divider.normal_top {
    position: absolute;
    width: 100%;
    height: 100px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    top: -96px;
    transform: scaleY(-1);
}

.divider.normal_top::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="%23d8e1f1"></path></svg>') repeat-x;
    background-size: auto 100%;
    z-index: 3;
}
.divider.normal_top::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1000 100"><path d="M0 0v4l250 64 125-32 250 64 375-96V0H0z" fill="rgba(0,0,0,0.4)"></path></svg>') repeat-x;
    background-size: auto 100%;
    filter: blur(0.8px);
    opacity: 0.5;
    top: -14px;
    z-index: 0;
    transform: scaleY(-2) scaleX(2);
}

/* Security 
#security {
    background: #2b2b2b;
    padding: 30px 0;
    border-top: 8px solid #546982;
    position: relative;
    z-index: 10;
}*/

#security {
  padding: 30px 0;
  border-top: 8px solid #3e5f62;
  position: relative;
  z-index: 10;
  background: url(../images/background-teal.webp);
  color: white; /* optional for contrast */
  overflow: hidden;
}

#security::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(43, 43, 43, 0.7); /* #2b2b2b at 70% opacity */
  z-index: 1;
}

#security > * {
  position: relative;
  z-index: 2; /* Ensures content sits above the overlay */
}

.security-heading {
    font-family: 'Lilita One';
    font-size: 2rem;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 10px;
}

.security-subtext {
    text-align: center;
    color: #ddd;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-family: 'Outfit';
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 0 15px;
    max-width: 960px;
    margin: 0 auto 60px auto;
}

.security-box {
    background: linear-gradient(180deg, rgb(63 63 63) 0%, rgb(47 47 47) 100%);
    border: 9px solid #313131;
    padding: 20px 25px;
    border-radius: 15px;
    color: #f0f0f0;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.security-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #ffcc00;
    margin-bottom: 15px;
    font-weight: bold;
}

.security-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.security-box li {
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.bullet-list li span:first-child {
  min-width: 30px;
}

.security-box a {
  color: #45f4f1;
  text-decoration: underline;
}

.security-box:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #f4d044;
}

p.secitalic {
    font-style: italic;
    color: #b2b2b2;
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 0.8rem;
}

#team.section {
    background: linear-gradient(0deg, rgb(13 13 13) 0%, rgb(35 34 34) 100%);
    color: #fff;
    padding: 60px 20px;
    border-top: 5px solid #515151;
    position:relative;
}


.team-heading {
    font-family: 'Lilita One';
    font-size: 2rem;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 10px;
}

.team-subtext {
    text-align: center;
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Outfit';
}

.team-controls {
  display: none;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

  h3.teamtitle {
      font-family: 'Londrina Solid', sans-serif;
  }
  
  p.teamtext {
      font-family: 'Outfit', sans-serif;
      
  }
  
.role {
    font-family: 'Outfit', sans-serif;
}  

.scroll-btn {
  font-size: 1.8rem;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  border: 2px solid #666;
  border-radius: 10px;
  cursor: pointer;
}

.scroll-btn:hover {
    background: #003f36;
    border: 2px solid #5a8982;
}

/* Shared carousel layout */
.team-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  margin: 0 auto 60px auto;
  max-width: 1160px;
}

.team-card {
    background: linear-gradient(180deg, rgb(63 63 63) 0%, rgb(47 47 47) 100%);
    border: 9px solid #313131;
    padding: 20px 25px;
    border-radius: 15px;
    color: #f0f0f0;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    width: calc(33.333% - 15px);
    max-width: 100%;
}

.team-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.role {
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-controls {
  display: none;
}


/* Footer */
        

.cc-window {

color: #fff !important;
background: linear-gradient(180deg, rgb(60 90 123) 50%, rgb(28 45 65) 110%);
font-family: 'Outfit' !important;

}

.cc-window.cc-banner {
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box; /* just in case */
  border-top: 10px dashed #1d3045;
}

.cc-btn {
  border-radius: 5px;
  font-family: 'Londrina Solid' !important;
  text-decoration: none;
  background-color: rgb(29 48 69) !important;
  
}
.cc-btn:hover {
  background-color: #547eaa !important;
}
.cc-btn:focus {
  background-color: #547eaa !important;
}

.cc-link {
    color: #fff !important;
}

.footer {
    background: linear-gradient(180deg, #3283a6 0%, #246381 100%);
    color: white;
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;;
    flex-direction: column;
}

.footer-border {
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 50px;
   background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233283a6" fill-opacity="1" d="M0,96L0,64L90,64L90,64L180,64L180,64L270,64L270,224L360,224L360,64L450,64L450,128L540,128L540,32L630,32L630,32L720,32L720,224L810,224L810,32L900,32L900,32L990,32L990,288L1080,288L1080,160L1170,160L1170,128L1260,128L1260,32L1350,32L1350,32L1440,32L1440,400L1350,400L1350,400L1260,400L1260,400L1170,400L1170,400L1080,400L1080,400L990,400L990,400L900,400L900,400L810,400L810,400L720,400L720,400L630,400L630,400L540,400L540,400L450,400L450,400L360,400L360,400L270,400L270,400L180,400L180,400L90,400L90,400L0,400L0,320Z"></path></svg>') repeat-x bottom;
    background-size: auto 100%;
    filter: drop-shadow(0px -6px 3px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    z-index: 20;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    gap: 40px;
    font-family: 'Outfit';
}

.footer-box {
    flex: 1 1 200px;
    min-width: 200px;
    opacity: 0.95;
}

.community {
    min-width: 318px; /* Footer community section */
}

.footer-box h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 4px solid rgb(45 70 100);
    padding: 6px 6px 6px 12px;
    letter-spacing: 0.5px;
    background: #335d7b;
    border-radius: 10px 10px 0 0;
}

.footer-box a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    border-radius: 5px;
    padding: 6px 0px 6px 12px;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.footer-box a:hover {
    color: #ffeb3b;
    /* transform: translateX(0px); */
    background: #2e4e68;
    border-radius: 5px;
    padding: 6px 0px 6px 12px;
}

.social-icons a {

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.social-icons img {
    width: 55px;
    height: 55px;
    filter: brightness(1) contrast(1.2);
    background: #FFFFFE;
    padding: 2px;
    border-radius: 999px;
    border: 6px solid #2e5068;
}

.social-icons a:hover {
    transform: scale(1.10);
    background: transparent;
}

.footer-legal {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    opacity: 0.75;
    padding: 0 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-family: 'Quicksand', sans-serif;
}

@media screen and (max-width: 1024px) { 
    
      body {
    overflow-x: hidden;
  }
        h2.one, h2.two {
            font-size: 2.5rem;
        }
        
    .team-card {
        width: calc(50% - 10px); /* 2 in a row */
    }

    .nav-container {
        display: none; /* Hide menu by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Right below the nav */
        left: 0;
        width: 100%;
        background: #3283a6;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
        
    }
    
    .nav-container.active {
    display: flex; /* Show menu when active */
    }

    .nav-container a {
        display: block;
        padding: 15px;
        font-size: 1.6rem;
    }

    .menu-toggle {
        display: flex; /* Show the hamburger */
    }

    .nav-container {
        display: none; /* Hide menu initially */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        /* width: 100vw;*/
        background: #3283a6;
        text-align: center;
        transition: all 0.3s ease-in-out;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .nav-container.active {
        display: flex; /* Show menu when active */
    }

    .nav-login-buttons #loginButton {
        display:none;    
    }
    
    .user-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  width: 100%;
  cursor: pointer;
}
    
    .modal-content {
        width: 80%;
    }

    #home {
        background: url('../images/cover.webp') no-repeat center center/cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
 .home-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0 20px 80px;
  }
  
  .home-covertext,
  .froggy-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }
 
   .froggy-wrapper {
    align-items: center;
  }
  
  .froggy-resale-box {
    margin: none;
}

    .home-characters img {
        display: none;
    }
    

  
    .home-tokenbox {
        width: 100%; /* Ensure it takes most of the screen */
        max-width: 390px; /* Prevents it from getting too big */
    }

    .home-tokenbox img {
        width: 100%; /* Make the image fully responsive */
        max-width: 100%;
    }
    
    .home-bg-top {
    display: none;
    }
    .home-bg-bottom {
    display: none;
    }
       .home-bg {
    display: none;
    }

  .home-covertitle {
    margin-top: 30px;
    padding: 10px 15px;
    text-align: center;
  }
  
.home-tokenbox h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);

}

.home-tokenbox p {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    line-height: 1;
}

    .character-shadow {
    bottom: 245px; /* Slightly below the character */

}


/*    .home-logo {

    position: absolute;
    top: min(45vh, 45%);
    width: min(50vh, 350px);
    background: #2a3b4e;
    padding: 10px;
    border-radius: 10px;
    
}*/



  #buyOrConnectBtn {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .buy-note {
    font-size: 0.85rem;
  }

.about-container {
        grid-template-columns: 1fr; /* Stack items in one column */
        text-align: center;
    }

    .about-image {
        display: none; /* Hides the character in mobile */
    }

    .about-text {

        max-width: 100%;
        margin: 0 auto; /* Center the text box */
        text-align: left;
    }

    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1.3rem;
        text-align: left;
    }

    .about-text .frogbox {
        font-size: 1.2rem;
        text-align: left;
    }



  .tokenomics-info-box,
  #tokenomics .chart-container {
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
  }
  
  #tokenomics .col-md-5,
  #tokenomics .col-md-7 {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #tokenomics .frog-wrapper {
    display: none !important; /* Hide frog on mobile */
  }

  #tokenomicsRow {
    flex-direction: column !important; /* Stack them on mobile */
    align-items: center;
  }

  .chart-container {
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


.tokenomics-info-box {
    
    max-width: 100%;
    padding: 15px 15px;
    height: 220px;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .tokenomics-info-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }

  .tokenomics-info-box li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.85rem;
  }

  #tokenomics .chart-container {
    padding: 0 10px;
  }

  #tokenomics canvas {
    max-width: 100%;
    height: auto;
  }
  
  
    :root {
            --marquee-height: 35px; /* Adjusted for mobile */
        }

.marquee__content {
    font-size: 1.3rem;
    align-items: center;
    }


    .roadmap-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .stage-box {
        transform: scale(0.95);
        width: 100%;
        padding: 15px;
        max-width: 350px;
    }

    .stage-box h3 {
        font-size: 2rem; 
    }

    .stage-box ul li {
        font-size: 1.3rem;

    }

    .stage-circle {
        width: 65px;
        height: 65px;
        font-size: 1.9rem;
        top: -60px;
    }

.roadmap-line {
        width: 80px;
        transform: rotate(90deg);
}


#tokenomicsContainer {
    margin-top:60px;
}
  .chart-container {
    width: 100%;
    max-width: 90vw;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

#tokenomics .chart-container {
    min-height: 450px;
}

  #tokenomicsChart {
    width: 100% !important;
    height: 100% !important;
    display: block;
    box-sizing: border-box;
  }
  

  #crewmissions .row {
    flex-direction: column;
  }

  #crewmissions .col-md-5,
  #crewmissions .col-md-7 {
    width: 100% !important;
  }
  
.footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-box {
        min-width: 100%;
        margin-bottom: 25px;
    }

    .social-icons a {
        margin: 10px 8px;
    }
  
}

#buyColumn {
padding: 60px 20px 0px 20px;
}

@media (max-width: 680px) {
    /* Socials shares in News */

  .news-btn .label-text {
    display: none;
  }

  .news-btn {
    padding: 8px; /* smaller padding for icon-only */
    width: 44px;   /* uniform square buttons */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .news-btn i {
    font-size: 18px;
  }
  
}
/* Adjust nav-login on small screens */
@media (max-width: 600px) {
    

.solid-seal {
    display:none;
}

  .wallet-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wallet-icon img {
    max-width: 80px;
    height: auto;
  }

  .wallet-details {
    align-items: center;
  }

  .wallet-capabilities li {
    justify-content: flext-start;
  }
  
  #teamSlider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px; /* optional padding */
    display: flex;
    gap: 20px;
  }

  .team-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
    .mobile-only  {
        display: flex !important;
    }
    .desktop-only {
        display: none !important;
    }

    .hide-on-mobile {
        display: inline;
    }
    
    h2.mob {
    padding-bottom: 0 !important;
}
    
    
  .ledger-modal .tab-content {
    height: 100px !important;
    max-height: calc(100vh - 360px); /* Increase buffer at small sizes */
    overflow-y: auto;
  }
 
  #ledgerTabs {
    flex-wrap: wrap !important; /* Allow wrapping to new line */
  }

  #ledgerTabs .nav-item {
    margin-bottom: 8px; /* Vertical spacing between lines */
    flex: 1 1 100%;     /* Make each item take full width of row */
  }

  #ledgerTabs .nav-link {
    width: 100%;
    text-align: center;
  }

  
.howtobuy-presale-btn {
    background: linear-gradient(180deg, #ffba00, #966803);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #664500;
    padding: 2px 5px;
    border: 2px solid #1a2333;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    font-family: 'Outfit';
    text-decoration: none;
}

  .mobile-hide {
    display: none !important;
  }

.home-toptext {
    display: none;
}

.home-toptext2 {
    display: none;
}

.home-mobiletext {
    font-size: clamp(1.13rem, 4vw, 2.7rem) !important;
    margin-bottom:clamp(10px, 4vw, 0px);
    font-family:  'Londrina Solid', sans-serif;
    display: block;
}

.label-full {
    display: none;
  }

  .label-short {
    display: inline;
  }


.crewmission-container {
    margin-top: 0px !important;
}

#crewmissions .nav-tabs, #leaderboardTabs {

   border-bottom: 0px solid #2c3245 !important; 
}

#crewmissions .tab-content, #leaderboardTabs + .tab-content {
padding: 10px 0px 5px 0px;
    
}
#crewmissions #missionsTabs .nav-item {
    text-align: left;
}

#crewmissions #missionsTabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border-bottom: 2px solid #ffcc00;
    flex-direction: column;
}

#crewmissions .nav-tabs, #leaderboardTabs {

margin-top: 5px;
}

#crewmissions .nav-tabs .nav-link, #leaderboardTabs .nav-link {
    font-size: 0.7rem;
}


#crewmissions  .mission-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

#crewmissions    .mission-info {
        width: 100%;
        margin-bottom: 8px;
    }

#crewmissions    .mission-name {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 4px;
    }

#crewmissions    .mission-points {
        font-size: 1rem;
        width: 68px;
    }

#crewmissions    .mission-action {
        width: 100%;
        text-align: left;
        margin-top: 5px;
    }

#crewmissions .mission-checkbox:checked + .mission-checkbox-label::before {
    margin-bottom: 10px;
}
  .leaderboard-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 5px;
  }

  .leaderboard-item .rank,
  .leaderboard-item .username,
  .leaderboard-item .points {
    width: 100%;
    text-align: left;
    padding: 0px 0;
    font-size: 1.1rem !important;
  }

  .leaderboard-item .points {
    color: #ffc107;
    font-size: 0.9rem;
  }

  .leaderboard-item .points .reward {
    display: inline-block;
    font-size: 0.8rem;
    color: #ccc;
  }
    .nav-user-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      font-size: 1.4rem; /* Matches the login button size */
      color: #5e4d1e;
    }

    
    .topConnectButton {
        padding: 5px;
    }
    
    .user-dropdown {
        padding: 16px 16px;
    }
    
    /* Dropdown Menu */
    .login-dropdown-menu {
        display: none;
        position: absolute;
        top: 52px;
        right: -9px;
        background: #1a1e2d;
        border-radius: 5px;
        padding: 10px;
        text-align: center;
        width: 120px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        z-index: 100;
        width: auto;
    }

    .login-dropdown-menu span {
        display: block;
        font-size: 0.9rem;
        color: white;
        margin-bottom: 5px;
        white-space: nowrap;
    }

    .login-dropdown-menu button {
        width: 100%;
        padding: 5px;
        background: #ffcc00;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
    }

    .login-dropdown-menu button:hover {
        background: #e6b800;
    }
    
    #logoutButton {
        color: #5e4d1e;
    }
    
   .roadmap-tooltip {
    left: 50%;
    transform: translate(-50%, -5px); /* Center horizontally and nudge up */
            max-width: 230px;
        width: 230px;
        }
  .about-text .frogbox {
      font-size:0.9rem;
  }
  
  .frogbox {
    padding: 15px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .frog-row {
    flex-direction: column;
    gap: 5px;
  }

  .frog-left,
  .frog-right {
    width: 100%;
    white-space: normal; /* ✅ Allow text to wrap on mobile */
  }

  .about-text {
    padding: 20px 15px;
  }

  .about-text h3 {
    font-size: 1.3rem;
    text-align: left;
  }

  .about-text p,
  .about-text .why-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-image {
    justify-content: center;
    padding-top: 30px;
  }

  .about-image img {
    max-width: 90%;
    height: auto;
  }
  
  .community {
      margin-bottom: -96px;
  }
 
  .team-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    justify-content: flex-start !important; /* THIS FIXES THE "Frog 2" bug */
    gap: 0;
    padding: 0;
  }

  .team-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 20px;
  }

  .team-controls {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  .team-carousel::-webkit-scrollbar {
    display: none;
  }


}

@media (max-width: 768px) {
    

  
    #how-to-buy .frog-wrapper {
        display:none;
    }
    
    .hide-on-mobile {
        display: none;
    }
    


}

@media (min-width: 768px) and (max-width: 1400px) {
    
    
    .hide-on-mobile {
        display: none;
    }
    
}


/* Buy Box Transform for scaled view */

@media (max-width: 1800px) {
  .froggy-wrapper {
    transform: scale(0.95) translateY(-1.8vh) translatex(-0.8vw)
  }
  
  /*  .home-covertitle {
  font-size: 1.6rem;
  width: 60vw;
  } */
  
}

@media (max-width: 1600px) {
    .froggy-wrapper {
        transform: scale(0.85) translateY(-6vh) translateX(-2.5vw);
    }
  
   /*   .home-covertitle {
  font-size: 1.8rem;   
  width: 60vw;
  } */
  
  
}

@media (min-width: 1401px) {

#how-to-buy .nav-tabs {
    display: flex;
    align-items: center; /* ✅ ensure vertical alignment */
    flex-wrap: nowrap;
    overflow-x:auto;
  }

  #how-to-buy .nav-tabs .arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
  }


}

@media (max-width: 1400px) {
  .froggy-wrapper {
    transform: scale(0.75) translateY(-11.5vh) translateX(-4.7vw);
  }
  
  #how-to-buy .nav-tabs {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 5px solid #a8b0c4 !important; /* Keep bottom line */
    padding-bottom: 10px;
  }

  #how-to-buy .nav-tabs .nav-item {
    width: 100%;
    margin: 0;
  }

  #how-to-buy .nav-tabs .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 14px 20px;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 5px solid #aab0c2 !important;
    border-radius: 12px;
    margin-bottom: 10px;
    background-color: #aab0c2 !important;
    color: #1c3c36 !important;
  }

  #how-to-buy .nav-tabs .nav-link.active {
    background-color: #7bd9e7 !important;
    color: #003f36 !important;
    border-color: #aab0c2 !important;
    border-bottom: 5px solid #aab0c2 !important;
  }

  #how-to-buy .nav-tabs .arrow {
    display: none !important; /* hide → arrows on mobile */
  }

  .arrow-icon {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.2rem;
    color: #003f36;
  }
  
}

@media (max-width: 1465px) and (min-width: 1025px) {
  .wallet-btn-long {
    display: none;
  }
  .wallet-btn-short {
    display: inline-block !important;
  }
}

@media (min-width: 1466px),
(max-width: 1024px) {
  .wallet-btn-short {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  .froggy-wrapper {
        align-self: flex-end;
    }

}

@media (min-width: 1024px) and (max-width: 1280px) {
  .hideTextonView {
    display: none;
  }
}
    

@media (min-width: 1024px) and (max-width: 1330px) {
  .hideButtonWalletonView {
    display: none;
  }
}

@media (max-width: 1350px) {
    .home-covertitle {
        margin-bottom: 10vh;
    }
}    
    
@media (max-width: 1200px) {
  .froggy-wrapper {
    transform: scale(0.70) translateY(-14.7vh) translateX(-5.8vw);
  }
  
   /*   .home-covertitle {
  font-size: 1.8rem;
  width: 60vw;
  }*/
}




@media (max-width: 1100px) {
  .froggy-wrapper {
    transform: scale(0.65) translateY(-18.6vh) translateX(-7.8vw);
  }
  
   /*   .home-covertitle {
  font-size: 1.8rem; 
  width: 60vw;
  }*/
}

.ledger-modal .table-responsive {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 400px;
}

@media (max-width: 1024px) {
    
    .responsive-img {
    max-width:100%;
}

 .froggy-wrapper {
    transform: none !important;
    height: auto;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 0 auto;
  }

  .froggy-presale-box {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20vh;
  }
  
    .home-covertitle {
        margin-top: 140px;
        padding: 50px 15px;
        text-align: center;
    }
    
    .home-grid {
        padding: 0;
    }

#about::after {
    display:none;
}

  
 .ledger-modal .modal-body {
    height: 90vh;
 }
 
  .ledger-modal #purchaseTableBody {
      padding-right: 10px !important;
  }
  .ledger-modal .modal-dialog {
      max-width: 90vw;
  }
  .ledger-modal table thead {
    display: none;
  }

  .ledger-modal table,
  .ledger-modal table tbody,
  .ledger-modal table tr,
  .ledger-modal table td {
    display: block;
    width: 100%;
  }

#affiliateTierTableBody tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #353842 !important;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-bottom: 12px;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 0;
    }

#affiliateTierTableBody tr:last-child {
  border-bottom: none !important;
}
  .ledger-modal table tr {
    margin-bottom: 1rem;
    background: #2c3245;
    border-radius: 8px;
    border: 2px solid #ebd25e;
    padding: 2px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);*/
    margin-bottom: 10px;
  }

  .ledger-modal table td {
    padding: 6px 10px;
    font-size: 0.9rem;
    text-align: left;
    position: relative;
  }

  .ledger-modal table td[data-label]::before {
    content: attr(data-label);
    font-weight: bold;
    color: #aaa;
    display: inline-block;
    width: 40%;
    min-width: 100px;
  }
  
  .ledger-modal .date-text {
      font-size: 0.8rem;
  
}

    .ledger-modal .tab-content {
        height: calc(90vh - 280px);
        overflow: auto;
        display: flex;
        flex-direction: column;
    }
    
    .ledger-modal .tab-pane {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  
    .ledger-modal .staking-ui {
    flex-shrink: 0;
  }

  .ledger-modal .table-container {
    flex-grow: 1;
    overflow-y: auto;
    max-height: unset;
    -webkit-overflow-scrolling: touch;
  }
  
    .staking-ui .stake-input-wrapper {
  position: relative;
  width: 100px;
  flex-shrink: 0;
}

    .staking-ui .stake-select {
        width: 115px ;
    }
}



@media (max-width: 768px) {

  
   /* .home-covertitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  width: 90vw;
  }*/

.froggy-wrapper {
    margin-top: 140px;
    margin: 0 auto !important;
}

}

@media (max-width: 360px) {
    .froggy-presale-box {
        width: 85vw;
        max-width: none;
        padding: 0;
        margin-top: 80px;
    }
}


@media screen and (max-width: 580px){

    /* #home {
        background: url(../images/frogmobile_background.webp) no-repeat center / cover;
        background-position: 55% top;

    }*/
    
    #home {
        background: url(../images/frogmobile_background_new.webp) no-repeat center / cover;
        background-position: 4% top;
    }
    
    
    /*  .home-covertitle {
        font-size: 0.9rem !important;
        margin-bottom: 200px !important;
        width: 70vw;
        top: 50px;
    } */
    
    
      .home-grid {
      margin: 0; /* âœ… This ensures it stays horizontally centered */
  }

    .froggroupmobile {
        position: absolute;
        bottom: 84%;
        left: 50%;
        transform: translateX(-50%);
        width: clamp(150px, 80vw, 330px);
        z-index: -1;
        text-align: center;
        margin-bottom: 0rem;
        display: block;
    }

.froggroupmobile img {
  width: 100%;
  height: auto;
  display: block;
 
 }
}

@media (max-width: 450px) {
    
      .status-indicator {
    background: transparent;
    border-radius: 0;
    border: none;
    display: none;
}

}

@media (max-width: 520px) {
  .hideButtonWalletonView {
    display: none;
  }
}

@media (max-width: 360px) {
  .hideButtonWalletonView {
    display: none;
  }
  .hideTextonView {
      display:none;
  }
}

@media (max-width: 430px) {
    
  .social-icons {
    margin-bottom:50px;  
    justify-content: center;
  }
  
  .pay-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0.5rem;
  }

  .pay-group input[type="number"] {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .select-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    max-width: 100%;
    width: 100%;
  }

  .select-wrapper img {
    width: 18px;
    height: 18px;
  }

  .select-wrapper span {
    font-size: 0.85rem;
  }

  .pay-group select {
    width: 100%;
    max-width: 100%;
    font-size: 0.85rem;
  }

  .output-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem;
    width: 100%;
  }

  .output-group input[type="text"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .output-group .token-icon {
    display: flex;
    justify-content: flex-start;
    margin-left: 5px !important;
  }

  .output-group .token-icon img {
    width: 48px; /* Slightly smaller for micro screens */
  }


  #buyOrConnectBtn {
  width: 84%;
  } 
  
 .froggy-presale-box {
    background: linear-gradient(180deg, rgb(230 195 87) 55%, rgb(28 45 65) 55%)
 }
 .froggy-presale-box.agreement-checked {
  background: linear-gradient(180deg, rgb(230, 195, 87) 47%, rgb(28, 45, 65) 47%);
}
   
  #cardTab .terms-agreement {
    margin-top: 70px; 
    color: #ccc;
}

.pay-group input[type="text"] {
    margin-top:10px;
}


#sendCodeBtn, #verifyCodeBtn {
  margin-bottom: 10px;
}

input[type="email"] {
    margin-bottom: 0;
}

input[type="text"] {
    margin-bottom: 0 !important;
}

/*input[type="email"], input[type="text"] {
    width: 100% !important;
}*/


}

@media (max-width: 344px) {

/* Specific Z Fold 5 */
  
  .froggy-wrapper {
    margin-left: 3px;
  }
  
  .buy-note-wrap {
      margin-left: -1.5rem;
  }
 

    /*    .home-covertitle {
        top: 130px;
    } */
    
}

