
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


html {
    height: 100%;
}

body {
    min-height: 100vh; 
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;

    background: url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
}

.main-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}
/* Intro Image */
.intro-image {
    position: relative;
    width: 100%;
    height: 70vh; 
    min-height: 200px; 
    max-height: 500px; 
    background: url('../img/075432.png') no-repeat center;
    background-size: contain;
    overflow: hidden; 
}

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.intro-text h2 {
    font-size: clamp(20px, 4vw, 36px);
    margin-bottom: 0.5rem;
}

.intro-text h3 {
    font-size: clamp(16px, 3vw, 24px);
}


html {
   
    font-size: 16px; 
    

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
  
    overflow-x: hidden;
    
   
    min-height: 100vh;
    
  
    background-color: #ffffff;
    
   
    --primary-color: #3396FF; 
    --text-color: rgb(20, 20, 20); 
    --background-light: rgb(255, 255, 255); 
    --overlay-color: rgba(0, 0, 0, 0.3); 
    --success-color: rgb(38, 181, 98); 
    --error-color: rgb(242, 90, 103); 
    
  
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', sans-serif;
}


.header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 1rem 2vw;
    background: url('../img/background-t.png') no-repeat center center / cover;
    z-index: 1000;
    height: 80px; 
}

/* Logo */
.logo img {
    width: 40vw;        
    max-width: 160px;    
    height: auto;
}


@media (max-width: 600px) {
    .logo img {
        width: 60vw;       
        max-width: 120px;  
    }
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: clamp(14px, 2vw, 18px);
}

.connect-btn {
    background: #1e90ff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}


.menu-btn {
    display: none;
}


body {
    padding-top: 80px; 
}


@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1vw;
    }

    .nav a[href="#"]:not(.connect-btn) {
        display: none; 
    }

    .nav a.connect-btn {
        display: inline-block; 
    }

    .logo img {
        width: 25vw; 
        max-width: 80px;
    }

    body {
        padding-top: 60px; 
    }
}

@media (max-width: 768px) {
   
    .nav a[href="#"]:not(.connect-btn) {
        display: none; 
    }

  
    .nav a.connect-btn {
        display: inline-block;
    }

   
    .menu-btn {
        display: none; 
    }

   
    .header {
        padding: 0.5rem 1vw;
    }
}

.nav-bar-btns {
    text-align: center;
    margin-bottom: 20px;
 
}

.button.nav.w-button {
    padding: 10px 30px;
    background-color: #0073fa;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.button.nav.w-button:hover {
    background-color: #005bb5;
}


/* Content */
.content {
    min-height: calc(100vh - 25vh - 10vh);
    padding: 1rem;
    text-align: center;
    background: rgba(243, 244, 246, 0.5);
    font-size: clamp(16px, 2.5vw, 20px);
}

.content-wrapper {
    all: unset;
    display: block;
    width: 100%;
}

.content-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex-wrap: wrap;
}

.content-box {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    box-sizing: border-box; 
}

.content-box.left-content,
.content-box.right-content {
    min-height: 100%;
}

/* Section 5 Specific Styles */
.section-5 {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0; 
}

.w-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    justify-items: center;
}

.grid-8 {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
    }

    .w-layout-grid {
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }

    .content-box {
        min-width: 100%; 
        width: 100%;
        margin: 0 auto;
    }

    .content-box.left-content,
    .content-box.right-content {
        padding: 0.5rem;
    }

    .section-5 {
        padding: 0.5rem 0;
    }
}

@media (max-width: 430px) {
    .content {
        padding: 0.5rem;
        font-size: 14px; 
    }

    .content-container {
        padding: 0.5rem;
    }

    .w-layout-grid {
        gap: 0.5rem;
    }

    .content-box {
        padding: 0.25rem;
        min-width: 100%;
        width: 100%;
    }

 
    .text-size-regular-sub-head,
    .metrics_card {
        font-size: 12px;
        width: 100%;
    }

    .intro__button,
    .button.w-button {
        padding: 0.5rem 1rem;
        font-size: 12px;
    }

    .special-note {
        font-size: 12px;
    }
}

/* Intro Section */
.intro-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.intro-wrapper {
    margin-bottom: 20px;
}

.intro-section {
    margin-top: 10px;
    max-width: 90%;
    margin: 10px auto;
    background: #fff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.intro-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-card {
    background: white;
    color: black;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.intro-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.intro-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.intro-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.intro-bullet {
    color: #0021f5;
    margin-right: 8px;
    font-size: 16px;
}

.intro-token,
.intro-chain,
.intro-rate,
.intro-supply {
    font-weight: bold;
}

/* Presale Section */
.presale-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presale-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presale-container {
    font-family: Arial, sans-serif;
    background-color: #5B1D7A;
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 95%;
    margin: auto;
    text-align: center;
}

.presale-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.presale-header h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.presale-header h1 a {
    color: #8dff33;
    text-decoration: none;
    font-weight: bold;
}

.presale-header script,
.presale-header iframe {
    margin: 0 auto;
    max-width: 100%;
}

.presale-info .info-box {
    background-color: #2C0942;
    border: 1px solid #19270e;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.presale-info .info-box p {
    margin: 10px 0;
    font-size: 1rem;
    color: #d1d1d1;
}

.presale-address {
    margin-top: 20px;
    text-align: center;
}

.address-label {
    font-size: 1rem;
    color: #d04700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.address-box {
    width: 100%;
    overflow: hidden;
    text-align: center;
    word-wrap: break-word;
}

.real-address {
    font-size: 1rem;
    color: #ffac02;
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
    overflow-x: auto;
    display: inline-block;
}


.real-address:hover {
    color: #cd3824;
}

.copy-button {
    background-color: #ffac02;
    color: #000;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
}

.copy-button:hover {
    background-color: #a47008;
    color: #000;
}

.copy-status {
    font-size: 0.9rem;
    color: #fff !important;
    margin-left: 10px;
}

.marquee-box marquee {
    color: #ffac02;
    font-size: 0.9rem;
    margin-top: 30px;
}

.coin-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    margin-right: 5px;
}

.next-icon {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    margin-right: 5px;
}

.presale-iframe-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.presale-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.presale-heading {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
}

.container-presale {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    box-sizing: border-box;
}

/* Airdrop Section */
#airdrop-block {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
}

#user-panel-air {
    background-color: #9b9b9b;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
}

.wallet-address {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.referral-container {
    margin-bottom: 15px;
}

.referral-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.referral-box p {
    color: #ae0822;
    font-size: 1rem;
    margin: 0;
}

.copy-btn {
    background: transparent;
    border: 1px solid #0073fa;
    padding: 5px;
    font-size: 20px;
    width: 36px;
    height: 36px;
    color: #0073fa;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #0073fa;
    color: #fff;
}

.invite-info {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.info-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.info-box {
    text-align: center;
    flex: 1;
}

.info-value {
    font-size: 1.2rem;
    color: #ae0822;
    margin-bottom: 10px;
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.info-label {
    font-size: 1rem;
    color: #fff;
}

.withdraw-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ae0822;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.withdraw-btn:hover {
    background-color: #8c061b;
}

.withdraw-section {
    margin-top: 20px;
}

.no-transaction {
    color: #ae0808d6;
    font-size: 1rem;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2vw;
    background: rgba(0, 0, 0, 0.8);
    background-color: #100318;

}

.footer .logo img {
    width: 15vw;
    max-width: 80px;



    height: auto;
}

.footer .text {
    font-size: clamp(12px, 1.5vw, 14px);
}

.footer .social a {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-left: 1rem;
    text-decoration: none;
}

/* Additional Components */
#withdrawHistoryTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#withdrawHistoryTable th {
    background-color: #d44d06;
    color: white;
    padding: 10px;
    text-align: left;
}

#withdrawHistoryTable td {
    border: 1px solid black;
    padding: 8px;
    color: black;
    text-align: left;
}

#withdrawHistoryTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

#withdrawHistoryTable tr:hover {
    background-color: #ddd;
}

.user-info-icon {
    width: 30px;
    height: 30px;
}

.referral-link {
    color: #4CAF50;
    text-decoration: underline;
    margin: 0 10px;
}

.copy-link {
    background: none;
    color: #555 !important;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}
.copy-links {
    color: #fff !important;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    background: #acacac !important
}

div.style_contentContainer__cXasA {
    background-color: #25514e !important;
    border-radius: 10px !important;
    padding: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

div.style_raisedContainer__50_o_ {
    background-color: #f6f6f6a8 !important;
    padding: 10px !important;
    border-radius: 10px !important;
    width: 100%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.style_totalRaised__7LKvk .style_titkeRaised__u4ZdG {
    font-size: 30px !important;
    color: #8dff33 !important;
}

div.style_price__pWz_g {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #8dff33 !important;
    margin-top: 10px !important;
    margin-left: auto;
    padding-right: 20px;
}

button {
    background: #5000bf !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
}

div.style_progressBar__9xgZw {
    background-color: #2b937a !important;
    height: 100% !important;
    border-radius: 5px !important;
    transition: width 1s ease-in-out !important;
}

.input-custom {
    padding-right: 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: .02em;
    color: #000;
    background: #ffffff;
    border: 1px solid #2b937a;
    border-radius: 2px;
    padding: 12px;
    border-right-style: hidden;
    margin-right: 10px;
    max-width: 220px;
}

.style_connectWalletButton__Asdi_ {
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 91.44px;
    cursor: pointer;
}

.style_raisedContent__Grt9W {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.style_tooltip__OIiF8 {
    font-size: 20px;
}

.timer {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    padding: 6px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 6px;
}

.time-label {
    font-size: 24px;
    color: #fff;
    margin-top: 5px;
}

.heading-h2 {
    font-size: 48px;
    color: #8dff33;
}

.time-inr {
    font-weight: bold;
}

.time-end {
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}

/* Forms and Inputs */
.text-size-regular-sub-head {
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.text-size-regular-sub-head img {
    border-radius: 0.25rem !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.special-note {
    background-color: #f9f9f9;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
}

.special-note b {
    color: #0098EA;
    font-weight: bold;
}

.special-note a {
    color: #FA853E;
    font-weight: bold;
    text-decoration: underline;
}

.metrics_card {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.crypto-list-item {
    font-size: 1rem;
    color: #000;
    list-style-type: none;
    padding: 10px;
    margin: 0;
    border-left: 4px solid #8dff33;
    background-color: #fff;
    border-radius: 5px;
}

.crypto-list-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 5px 0 0 0;
}

#registerForm {
    margin-top: 15px;
    text-align: center;
}

#registerForm input[type="text"],
#registerForm input[type="password"],
#registerForm input[type="email"],
#registerForm input[type="number"] {
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #000;
}

#registerForm input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

#registerForm button {
    background-color: #cd3824;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#registerForm button:hover {
    background-color: #d35620;
    color: #fff;
}

.alert {
    color: red;
    font-size: 0.9rem;
    margin: 10px 0;
}

#alertETH {
    display: block;
    margin-top: 10px;
    color: #ff3333;
    font-size: 0.9rem;
}

ul.active {
    list-style: none;
    padding: 0;
}

ul.active li {
    margin: 10px 0;
}

.special-note span.text {
    font-size: 0.9rem;
    color: #333;
}

a {
    text-decoration: none;
    color: #0098EA;
   
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.telegram {
    width: 1em;
    height: 1em;
    vertical-align: baseline;
    margin-left: 5px;
    margin-right: 5px;
    display: inline;
}

#wallet_address {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #8dff33;
    border-radius: 12px;
    background-color: #f9f9f9;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#referral_code {
    width: 150px;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 10px;
    display: inline-block;
}

.label-referral {
    display: inline-block;
    font-size: 14px;
    margin-right: 5px;
    color: #000;
}

/* Modal */
.modal-content {
    margin-top: 20px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.modal-header .close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 12px;
}

#presaleAmount {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
    margin: 0 auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#presaleAmount:focus {
    border-color: #8dff33;
    box-shadow: 0 0 5px #8dff33;
}

a[onclick="setMax()"] {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    padding-left: 10px;
}

p label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.modal-footer button {
    color: #000;
    background-color: #8dff33;
    border: 2px solid #8dff33;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-footer button:hover {
    background-color: #6ed320;
    color: #fff;
    border-color: #6ed320;
}

#minalloc {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.style_allocationRow__20SMw {
    line-height: 1.6;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 0.5px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.style_allocationRow__20SMw p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.style_allocationRow__20SMw p strong {
    color: #8dff33;
}

.style_allocationRow__20SMw .text-left {
    font-size: 0.9em;
    text-align: left;
    font-weight: normal;
}

.style_allocationRow__20SMw p:first-child {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* Grid Layouts */
.w-layout-grid.grid-10 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section-5 {
    padding: 0px 0;
    margin-top: 10px;
}

.w-layout-grid.grid-8 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: auto;
    margin: 0 auto;
    place-items: inherit;
}

/* User Panel */
#userpanel {
    background-color: #fff;
    padding: 3px;
    border-radius: 8px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button.w-button {
    background-color: #8dff33;
    color: #000;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

button.w-button:hover {
    background-color: #72e01f;
}

button.w-button:focus {
    outline: none;
}

b.w-button {
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

b.w-button:hover {
    background-color: #003d80;
}

.token-calculator__coin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
}

.token-calculator__coin img {
    width: 30px;
    height: 30px;
}

.token-calculator__coin .coin-name {
    font-weight: 200;
}

.token-calculator__coin .text-color--300 {
    color: #888;
    font-size: 12px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.text-color--400 {
    color: #666;
}

.font-size--15 {
    font-size: 15px;
}

.font-size--12 {
    font-size: 12px;
}

#your_wallet {
    font-weight: bold;
    color: #000;
}

.center-text {
    text-align: center;
}

.row.buttonrow {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.button-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 12rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #FFC107;
    color: #000000;
}

.button-item a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* About Animecoin and Smart Contract */
.about-animecoin .content-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d04700;
    margin-bottom: 1rem;
}

.about-animecoin .content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}
.smart-contract  {

    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}
.smart-contract .content-heading {
    color: #d04700;
    text-align: center;
    margin-bottom: 1rem;
}

.smart-contract-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contract-item {
    display: grid;
    grid-template-columns: 30px 150px auto 30px;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.contract-item i {
    font-size: 1.2rem;
    color: #d04700;
    justify-self: center;
}

.contract-item .label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    text-align: left;
}

.contract-item .value {
    font-size: 1rem;
    color: #d04700;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
    overflow: auto;
    cursor: pointer;
}

.contract-item.address {
    display: grid;
    grid-template-columns: 30px 150px 1fr 30px;
    align-items: center;
    gap: 10px;
}

.contract-item.address .value {
    white-space: nowrap;
    overflow: auto;
}

.contract-item.address a {
    text-align: right;
    color: #d04700;
}

.whitepaper-button {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #d04700;
    border: 2px solid #d04700;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem auto 0;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    max-width: 200px;
}

.whitepaper-button:hover {
    background-color: #d04700;
    color: white;
}

/* Copy Message */
.copy-message {
    display: none;
    position: absolute;
    background: #d04700;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: fadeOut 4000ms forwards;
    -webkit-animation: fadeOut 4000ms forwards;
}

.copy-message.active {
    display: inline-block;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.copy-address:hover {
    color: #bf3500;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .logo img {
        width: 15vw;
    }

    .footer .logo img {
        width: 12vw;
    }

    .intro-image {
        height: 20vh;
    }

    .presale-section {
        min-height: 737px;
        padding-top: 10px;
    }

    .container-presale {
        max-width: 90%;
        padding: 20px;
        height: 100vh;
    }

    .intro-container {
        max-width: 90%;
        padding: 20px;
    }

    .intro-title {
        font-size: 26px;
    }

    .intro-section-title {
        font-size: 19px;
    }

    .intro-list {
        font-size: 14px;
    }

    #airdrop-block {
        max-width: 90%;
        padding: 5px;
    }

    #user-panel-air {
        padding: 5px;
    }

    .wallet-address {
        font-size: 1.1rem;
    }

    .info-section {
        gap: 20px;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .info-label {
        font-size: 0.95rem;
    }

    .content-box {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .nav a:not(.connect-btn) {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav.responsive a:not(.connect-btn) {
        display: block;
        margin: 0.5rem 0;
    }

    .nav.responsive {
        position: absolute;
        top: 4rem;
        right: 2vw;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        border-radius: 5px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer .social {
        margin-top: 1rem;
    }

    .real-address {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .address-box {
        padding: 10px;
    }

    .container-presale {
        padding: 15px;
        max-width: 100%;
        height: 100vh;
    }

    .intro-container {
        padding: 15px;
    }

    .intro-title {
        font-size: 24px;
    }

    .intro-section {
        padding: 5px;
    }

    .intro-section-title {
        font-size: 18px;
    }

    .intro-list {
        font-size: 13px;
    }

    .intro-item {
        margin-bottom: 8px;
    }

    #airdrop-block {
        padding: 5px;
    }

    #user-panel-air {
        padding: 3px;
        border-radius: 8px;
    }

    .wallet-address {
        font-size: 1rem;
    }

    .referral-container p {
        font-size: 1rem;
    }

    .referral-box {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .referral-box p {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .copy-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .invite-info {
        font-size: 0.9rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .info-section {
        flex-direction: column;
        gap: 15px;
    }

    .info-box {
        margin-bottom: 10px;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .info-icon {
        width: 28px;
        height: 28px;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .withdraw-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .withdraw-section {
        margin-top: 15px;
    }

    .no-transaction {
        font-size: 0.9rem;
    }

    .w-layout-grid.grid-10 {
        grid-template-columns: 1fr;
    }

    .w-layout-grid.grid-8 {
        flex-direction: column;
   
    }

    .content-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .content-box {
        min-width: 100%;
        padding: 1rem;
    }

    .content-heading {
        font-size: 1.25rem;
    }

    .content-text {
        font-size: 0.9rem;
    }

    .contract-item {
        grid-template-columns: 25px auto 1fr auto;
    }

    .contract-item .label {
        margin-bottom: 0.5rem;
    }

    .whitepaper-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .text-size-regular-sub-head {
        padding: 3px;
    }

    #registerForm input[type="text"],
    #registerForm input[type="password"],
    #registerForm input[type="email"],
    #registerForm input[type="number"] {
        max-width: 100%;
    }

    .timer .time-inr {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.9rem;
    }

    .presale-header {
        padding: 10px;
    }

    .presale-header script,
    .presale-header iframe {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 1vw;
    }

    .logo img {
        width: 25vw;
        max-width: 80px;
    }

    .connect-btn {
        padding: 0.4rem 0.8rem;
        font-size: 14px;
    }

    .intro-image {
        height: 15vh;
        min-height: 150px;
    }

    .content {
        padding: 1rem;
    }

    .footer .logo img {
        width: 20vw;
        max-width: 60px;
    }

    .content-container {
        padding: 1rem;
    }

    .content-heading {
        font-size: 1.1rem;
    }

    .content-text {
        font-size: 0.8rem;
    }

    .whitepaper-button {
        max-width: 150px;
        font-size: 0.8rem;
    }
}

/* Additional Responsive Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .w-layout-grid.grid-8 {
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .content-box {
        min-width: 45%;
    }
}

/* CSS cho hero__buttons */
.hero__buttons.xxx {
    display: flex; 
    flex-direction: row; 
    gap: 15px; 
    justify-content: center; 
    align-items: center; 
    padding: 0 15px; 
}

.btn {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5x;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-border-radius: 5x;
    -moz-border-radius: 5x;
    -ms-border-radius: 5x;
    -o-border-radius: 5x;
    text-decoration: none;
}


.wide {
    width: 100%;
    max-width: 300px; 
}


.btn._filled {
    background-color: #680AB5;
    color: #fff;
    border-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.btn.secondary {
    background-color: #fff;
    color: #db71d7;
    border: 2px solid #000;
    text-decoration: none;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}

/* Hover effect */
.btn._filled:hover {
    background-color: #5000bf; 
    color: #fff;
    text-decoration: none;
}

.btn.secondary:hover {
    background-color: #DDBBDC; 
    color: #000;
    text-decoration: none;
}


@media (max-width: 768px) {
    .hero__buttons.xxx {
        flex-direction: column; 
        padding: 15px; 
    }

    .btn.wide {
        max-width: 100%; 
        width: 100%; 
        padding: 10px 20px; 
        font-size: 14px; 
    }
}

.h3-airdrop{
    color: #000;
}

.countdown-container {
    background-color: #25514E;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.countdown-heading {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.time-text {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-top: 5px;
    width: 60px;
    text-align: center;
}

.time-divider {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 60px;              
    margin-top: 6px;          }