
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/* Base styles */
body {
    background-color: #000000;
    font-family: 'Outfit', sans-serif;
    color: white;
}


:root {
    --dark-bg: #000000;
    --border-color: #15131c;
    --text-white: #ffffff;
    --text-gray: #c5c5c5;
    --dark-black: #090610;
    --sidebar-width: 280px;
    --primary-color: #FFFFFF;
    --card-bg: #000000;
    --text-muted: #ffffff;
}


/* Sign in code start here */


/* Sign up container */
.sign-in-container {
    min-height: 100vh;
    padding: 3rem 1rem;
}

/* Sign up card */
.sign-in-card {
    background-color: #000000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
}

/* Header styles */
.sign-in-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sign-in-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 529px;
    margin: 0 auto 2rem;
}

/* Form styles */
.sign-in-form-container {
    max-width: 602px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sign-in-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.sign-in-input {
    height: 49px;
    background-color: transparent !important;
    border: 1px solid #15131c !important;
    border-radius: 10px !important;
    color: #c5c5c5 !important;
    font-weight: 600;
}

.sign-in-input::placeholder {
    color: #c5c5c5;
}

.sign-in-forgot-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.sign-in-btn-primary {
    width: 285px;
    height: 48px;
    background: #C1CBE4;
    border-radius: 30px;
    border: 1px ;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}


.sign-in-account-text a{
    text-decoration: none;
}
/* Footer styles */
.sign-in-footer {
    margin-top: 2.5rem;
}

.sign-in-social-icon {
    width: 24px;
    height: 24px;
}

.sign-in-social-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.sign-in-account-text {
    font-weight: 600;
    font-size: 1rem;
}

.sign-in-footer-link {
    color: white;
    text-decoration: underline;
    font-size: 0.75rem;
    font-weight: 600;
}


/* Forget modals */

/* Modal styles */
.forgot-password-modal {
    background-color: #000000;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.forgot-password-modal .modal-header {
    border-bottom: 1px solid var(--border-color);
}

.forgot-password-modal .modal-title {
    color: var(--text-color);
}

.forgot-password-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.forgot-password-form-text {
    color: #888;
    font-size: 0.9em;
}

.forgot-password-input {
    background-color: rgba(78, 149, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.forgot-password-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(100, 108, 255, 0.25);
}

.forgot-password-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.forgot-password-btn{
    padding: 0.7rem 0;
    background: #007bff;
    border: none;
    color: #ffffff;
    border-radius: 5px;
}

/* Forget modals */


/* Sign in code end here */




/* Sign up code start here */


body {
    background-color: var(--dark-bg);
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.sign-up-container {
    background-color: var(--dark-bg);
}

.sign-up-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.sign-up-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-white);
}

.sign-up-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    max-width: 529px;
    margin: 0 auto;
}

.sign-up-label {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.sign-up-input {
    height: 49px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-gray);
    padding: 0 16px;
}

.sign-up-input::placeholder {
    color: var(--text-gray);
}

.sign-up-input:focus {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-white);
    box-shadow: none;
}

.form-check-input {
    background-color: transparent;
    border-color: var(--text-white);
}

.form-check-input:checked {
    /background-color: var(--text-white);
    //border-color: var(--text-white);
}

.form-check-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}

.sign-up-btn-primary {
    width: 285px;
    height: 48px;
    background: #C1CBE4;
    border-radius: 30px;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.sign-up-btn-primary:hover {
    opacity: 0.9;
}

.sign-up-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sign-up-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-white);
}

.sign-up-login-text {
    font-weight: 600;
    color: var(--text-white);
}

.sign-up-link {
    color: var(--text-white);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
}

.sign-up-link:hover {
    color: var(--text-gray);
}


/* Sign up code start here */


/* Dashboard  code start here */



.dashboard-container {
    display: flex;
    min-height: auto;
    background: #000000;
}

/* Menu Button Styles */
.dashboard-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: var(--primary-color);
    border: none;
    border-radius: 30px;
    color: #0066ff;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: var(--sidebar-width);
    background-color: var(--dark-black);
    padding: 2rem;
    position: fixed;
    height: 100vh;
    border-right: 1px solid #15131C;
    display: flex;
    flex-direction: column;
    z-index: 999;
    transition: transform 0.3s ease;
    overflow-y: auto;
}
::-webkit-scrollbar {
    display: none;
}
.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;

}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
    background-color: var(--primary-color);
    color: #0066ff;
}

.dashboard-social {
    margin-top: auto;
}

.dashboard-social h6{
    color: #ffffff !important;
    padding-top: 2rem;
    font-size: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.3rem 0;
}

.social-link span{
    font-size: 0.7rem;
}

/* Main Content Styles */
.dashboard-main {
    margin-left: var(--sidebar-width);
    padding: 2rem;
    width: calc(100% - var(--sidebar-width));
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 2rem;
    border: 2px solid #15131C;
    border-radius: 30px;
}

.dashboard-profile span{
    font-size: 0.8rem;
}



/* Card Styles */
.dashboard-card {
    background-color: var(--card-bg);
    border: 2px solid #15131C;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #0066ff;
}

.card-info h3 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-info h2 {
    font-size: 2rem;
    margin: 0;
}

.daily-description{
    font-size: 0.7rem;
    padding: 3rem 1rem;
}

/* Button Styles */
.dashboard-btn-primary {
    background-color: var(--primary-color);
    color: #0066ff;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-btn-secondary {
    background-color: rgb(255, 255, 255);
    color: #0066ff;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Progress Bar */
.progress {
    background-color: rgb(255, 255, 255);
    height: 1rem;
    border-radius: 1rem;
}

.progress-bar {
    background-color: #0066ff;
    border-radius: 1rem;
}



/* Modal Styles */
.dashboard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.dashboard-modal.show {
    display: flex;
}

.dashboard-modal-content {
    background-color: var(--card-bg);
    border: 1px solid #15131C;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: 1rem;
}

.modal-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}


/* Dashboard  code end here */


/* Airdrop code start here */

/* Main Content Styles */
.airdrop-main {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
}

.airdrop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.airdrop-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.airdrop-hero {
    margin-bottom: 3rem;
}

.airdrop-timer {
    margin-top: 1rem;
}

.text-purple,.airdrop-timer {
    color: #0066ff;
    margin-left: 0.5rem;
}

.airdrop-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.airdrop-stat-card {
    background-color: #000000;
    border: 2px solid #15131C;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.airdrop-stat-card i {
    font-size: 2rem;
    color: #0066ff;
    margin-bottom: 1rem;
}

.airdrop-stat-card h3 {
    margin: 0;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.airdrop-stat-card p {
    margin: 0;
    color: var(--airdrop-text-secondary);
}

.airdrop-form {
    background-color: #000000;
    border: 2px solid #15131C;
    padding: 2rem;
    border-radius: 1rem;
}

.airdrop-input-group {
    margin-bottom: 1.5rem;
}

.airdrop-input-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.input-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--airdrop-dark);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.airdrop-input {
    background: none;
    border: 1px solid #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 30px;
    color: var(--airdrop-text);
    width: 60%;
    outline: none;
}

.airdrop-btn-link {
    color: #0066ff;
    text-decoration: none;
}

.airdrop-btn-primary {
    background-color: #FFFFFF;
    color: #0066ff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    width: 100%;
    font-weight: 500;
    font-size: 1.2em;
    cursor: pointer;
    transition: opacity 0.2s;
}

.airdrop-btn-primary:hover {
    opacity: 0.9;
}


.join-text{
    font-size: 0.8rem;
}

/* Modal Styles */
.airdrop-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.airdrop-modal-content {
    background-color: #000000;
    border: 1px solid #15131C;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 400px;
    margin: 1rem;
}

.airdrop-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.airdrop-modal-content h2 {
    font-size: 1.5rem;
    margin: 0;
}

.airdrop-modal-content p {
    color: var(--airdrop-text-secondary);
    margin: 0;
}

.airdrop-modal-content .airdrop-btn-primary {
    max-width: 200px;
    margin: 0 auto;
}



/* Airdrop code end here */



/* Refferral code start here */


/* Main Content Styles */
.referral-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 2rem;
}

.referral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.referral-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Stats Cards */
.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.referral-stat-card {
    background-color: #000000;
    padding: 1.5rem;
    border: 2px solid #15131C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    background-color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0066ff;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

/* Points Section */
.referral-points-section {
    background-color: #000000;
    border: 2px solid #15131C;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.points-header h2 {
    margin: 0;
    font-size: 2rem;
}

.referral-link-box {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.referral-link-box input {
    flex: 1;
    background-color: #000000;
    border: 1px solid #15131C;
    padding: 0.8rem;
    border-radius: 30px;
    color: #999999;
}

.referral-btn-primary {
    background-color: #FFFFFF;
    color: #0066ff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
}

.referral-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(100, 108, 255, 0.979);
    padding: 1rem;
    border-radius: 8px;
}

.referral-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Steps Section */
.referral-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: #000000;
    border: 2px solid #15131C;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.2;
    line-height: 1;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
}

/* Points Info Section */
.points-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.points-info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.points-info-text {
    flex: 1;
    margin: 0;
}


/* Refferral code end here */




/* Profile code end here */




/* Main Content Styles */
.profile-main {
    flex: 1;
    padding: 2rem;
    border: 2px solid #15131C;
    border-radius: 12px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.profile-referral-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-referral-count {
    background-color: #FFFFFF;
    color: #0066ff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.profile-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button Styles */
.profile-btn {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.profile-user-info{
    padding: 0.5rem 2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid #ff00000e;
    background: #ff00000e !important;
}

.profile-btn-logout{
    background: none;
    border: none;
}

.profile-btn-primary {
    background-color: var(--profile-purple);
    color: white;
}

.profile-btn-secondary {
    background-color: #FFFFFF;
    color: #0066ff;
    border-radius: 30px;
}

.profile-btn-outline {
    background-color: #FFFFFF;
    border: 1px solid #15131C;
    color: #0066ff;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
}

.profile-btn:hover {
    opacity: 0.9;
}

/* Profile Content Styles */
.profile-user-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.profile-title {
    margin: 0;
    font-size: 1.5rem;
}

.profile-email {
    margin: 0.5rem 0 0;
    color: var(--profile-gray);
}

.profile-section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.profile-warning {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    width: 50%;
}

.profile-key-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-radius: 30px;
}

.profile-key-input {
    width: 550px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--profile-border);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--profile-text);
}

.profile-security-buttons {
    display: flex;
    gap: 1rem;
}




/* Profile code end here */



/* Wallet code start here */


/* Main Content Styles */
.wallet-main {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.wallet-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-profile-name {
    color: var(--wallet-text-secondary);
}

/* Card Styles */
.wallet-balance-card,
.wallet-assets-card,
.wallet-action-card,
.wallet-transactions {
    background-color: #000000;
    border: 2px solid #15131C;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}


/* Cards */
.wallet-balance-card,
.wallet-assets-card,
.wallet-action-card,
.wallet-transactions-card {
    background-color: var(--wallet-card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.wallet-balance-card > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.wallet-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}

.wallet-amount span {
    font-size: 1rem;
    color: #ffffff;
}

.wallet-address-box {
    background-color: #000000;
    border: 2px solid #15131C;
    padding: 1rem;
    border-radius: 0.5rem;
    min-width: 250px;
}

.wallet-address-box h6{
    color: #ffffff;
}



.wallet-select{
    border: 1px solid #15131C;
    border-radius: 30px !important;
}

.wallet-qr{
    padding: 1rem;
}


.save-btn-primary{
    background-color: #ffffff;
    color: #0066ff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}


.wallet-save{
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #15131c;
    border-radius: 30px;
    margin-top: 0.5rem;
}



/* Button Styles */
.wallet-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
}


.wallet-btn-primary {
    background-color: #ffffff;
    color: #0066ff;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;

}




.wallet-btn-outline {
    background-color: #ffffff;
    border: 1px solid var(--wallet-border);
    color: #0066ff;
}

.wallet-btn-icon {
    background: none;
    border: none;
    color: var(--wallet-text-secondary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Table Styles */
.wallet-assets-table,
.wallet-table {
    width: 100%;
}

.wallet-assets-header,
.wallet-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 0;
    border-bottom: 1px solid var(--wallet-border);
    color: var(--wallet-text-secondary);
}

.wallet-table-header {
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}

.wallet-assets-row,
.wallet-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 0;
    align-items: center;
}

.wallet-table-row {
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}

.wallet-token {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-status-completed {
    color: var(--wallet-success);
}

/* Form Styles */
.wallet-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--wallet-dark);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.wallet-form label{
    padding: 0.5rem;
}

.wallet-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #000000;
    border: 1px solid #15131c;
    border-radius: 30px;
    color: var(--wallet-text);
    margin-top: 0.5rem;
}

.wallet-amount-input {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 30px;
    border: 1px solid #15131C;
    margin: 1rem 0;
    overflow: hidden;
    margin-top: 0.5rem;
}

.wallet-amount-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--wallet-text);
}

.wallet-btn-text {
    background: none;
    border: none;
    color: var(--wallet-primary);
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.wallet-fee {
    display: flex;
    justify-content: space-between;
    color: var(--wallet-text-secondary);
    margin: 1rem 0;
}

.wallet-link {
    color: var(--wallet-primary);
    text-decoration: none;
}


/* Wallet code end here */



/* Transaction code start here */


/* Main Content */
.transaction-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 24px;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}




/* Transaction Details */
.transaction-details-wrapper {
    background: #000000;
    border: 2px solid #15131C;
    border-radius: 16px;
    overflow: hidden;
}

/* Transaction Table */
.transaction-table-header {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.transaction-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-icon-wrapper i {
    color: #0066ff;
    font-size: 20px;
}

.transaction-table {
    color: #fff;
    margin: 0;
}

.transaction-table thead th {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    border: none;
    padding: 16px;
}

.transaction-table tbody td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 16px;
}

.transaction-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.transaction-status.completed {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27AE60;
}


/* Transaction code end here */


/* Landing Pade start here */

/* Base styles */
:root {
    --dark-black: #000000;
    --primary-blue: #0166ff;
    --text-white: rgba(255, 255, 255, 0.87);
    --tekonomics-bg: #000000;
    --tekonomics-text: #ffffff;
    --tekonomics-blue: #0166ff;
    --tekonomics-light-blue: #0066FF;
    --tekonomics-yellow: #FFE600;
    --tekonomics-red: #FF0000;
    --tekonomics-card-bg: #589CFF;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-black);
    color: var(--text-white);
    font-family: Inter, system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}




/* Landing page end here */


/* Landing Section Styles */
.landing-section-wrapper {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Radial Circle Styles */
.landing-section-radial {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 1;
    filter: blur(100px);
    z-index: 1;
}

.landing-section-radial-left {
    background: #0166ff;
    top: 200px;
    left: -200px;
}

.landing-section-radial-right {
    background: #0066ff;
    bottom: 200px;
    right: -200px;
}

.landing-section-nav {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.landing-section-logo {
    height: 40px;
}

/* Navigation Animation Styles */
.navbar-nav {
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0066ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link:hover::after {
    width: 100%;
}

.landing-section-nav-button {
    margin-left: 2rem;
}

.landing-section-hero {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.landing-section-header {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.landing-section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.landing-section-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-section-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.landing-section-btn-primary {
    background: #0066ff;
    color: #ffffff;
}


.landing-section-btn-primary:hover {
    background: #0066ff;
    color: #ffffff;
    opacity: 0.9;
    transform: scale(1.05) !important;
}

.landing-section-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.landing-section-btn-secondary:hover {
    background: none;
    color: #ffffff;
    opacity: 0.9;
    transform: scale(1.05) !important;
}

.landing-section-image {
    border-radius: 12px;
}



/* Landing page end here */



/* about section end here */



/* About Container */
.about-container {
    min-height: 100vh;
    padding: 2rem 0;
}

/* About Content */
.about-content {
    padding: 2rem;
}



.about-subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Button */
.about-btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.about-btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.about-btn-primary:hover {
    background-color: #007acc;
    transform: translateY(-2px);
}

/* About Image */
.about-image {
    text-align: center;
    padding: 2rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}



/* about section end here */


/* Easy step to code start here */




.easy-step-container {
    padding: 4rem 5rem;
}

.easy-step-header {
    margin-bottom: 4rem;
    color: #ffffff;
}


.easy-step-subtitle{
    color: #0066FF !important;
}


.easy-step-subtitle {
    color: var(--easy-step-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.easy-step-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.easy-step-description {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

.easy-step-card {
    background: var(--easy-step-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.easy-step-card:hover {
    transform: translateY(-5px);
}

.easy-step-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 1.5rem;
    background: rgba(13, 110, 253, 0.1);
    border: 2px solid var(--easy-step-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.easy-step-icon::after {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
}

.easy-step-icon img {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.easy-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.easy-step-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.easy-step-btn {
    background: transparent;
    border: 1px solid var(--easy-step-blue);
    color: var(--easy-step-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.easy-step-btn-primary:hover {
    background: var(--easy-step-blue);
    color: white;
}

/* Easy Step code end here */



/* Road map start here */


/* Roadmap Container */
.roadmap-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

/* Roadmap Header */
.roadmap-badge {

    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    color: #0052cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-title {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 700;
}

.roadmap-description {
    max-width: 800px;
    margin: 0 auto;
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Roadmap Cards */
.roadmap-card {
    background: var(--easy-step-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
}

.roadmap-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.roadmap-card-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #0066ff);
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #d0d0d0;
}

.roadmap-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0052cc;
}

/* Special Card */
.roadmap-card-special {
    background: var(--easy-step-card-bg);
    text-align: center;
}

/* Button Styles */
.roadmap-btn {
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.roadmap-btn-primary {
    background: #0066ff;
    color: white;
}

.roadmap-btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.05);
}


/* Road map end here */



/* Tekonomics start here */


.tekonomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tekonomics-header {
    margin-bottom: 3rem;
}

.tekonomics-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tekonomics-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.5;
}

.tekonomics-chart {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.tekonomics-info-card {
    background: var(--tekonomics-card-bg);
    border-radius: 20px;
    padding: 2rem;
}

.tekonomics-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tekonomics-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.986);
}

.tekonomics-address-box {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.tekonomics-btn-copy {
    background: var(--tekonomics-blue);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.tekonomics-records {
    margin-top: 3rem;
}

.tekonomics-record-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--easy-step-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);

}

.record-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tekonomics-record-item.blue .record-dot { background: var(--tekonomics-blue); }
.tekonomics-record-item.light-blue .record-dot { background: var(--tekonomics-light-blue); }
.tekonomics-record-item.yellow .record-dot { background: var(--tekonomics-yellow); }
.tekonomics-record-item.red .record-dot { background: var(--tekonomics-red); }

.record-text {
    font-size: 0.9rem;
    line-height: 1.4;
}



/*  Tekonomics end here */


/* Pre sale and world wide start here */





/* Pre-sale Section */
.pre-sale-section {
    padding: 80px 0;
}

.pre-sale-header {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.pre-sale-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.pre-sale-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.pre-sale-btn-primary {
    background-color: #007bff;
    color: white;
}

.pre-sale-btn-primary:hover {
    background-color: #0056b3;
}

.pre-sale-timer {
    background: var(--easy-step-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4rem;
    height: 100%;
    text-align: center;
}

.pre-sale-timer-header {
    margin-bottom: 20px;
}

.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timer-box {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    min-width: 70px;
}

/* World-wide Section */
.world-wide-section {
    padding: 80px 0;
    background-color: #000000;
}

.world-wide-header {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.world-wide-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.world-wide-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

.world-wide-map {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.world-wide-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Pre sale and world wide end here */




/* Footer section start here */

/* Footer Styles */
.footer-container {
    background-color: #000000;
    color: rgb(255, 255, 255);
    padding: 2rem 0;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #646cff;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    justify-content: md-end;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #646cff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}




/* Footer section end here */



/* Landing Pade start here */




/* Terms and condition */



.terms-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-section ul {
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}



/* Terms and conditions */





/* Privacy policy */



/* Container styles */
.privacy-policy-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



/* Content styles */
.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-policy-title {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.privacy-policy-date {
    color: #888;
    margin-bottom: 2em;
}

.privacy-policy-section {
    margin-bottom: 2em;
}

.privacy-policy-item {
    margin-bottom: 2em;
}

.privacy-policy-item h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.privacy-policy-item ul {
    padding-left: 1.5em;
}

.privacy-policy-item li {
    margin-bottom: 0.5em;
}


/* Privacy policy */


/* Card Styles */
.deposit-page-card {
    background-color: #000000;
    border: 2px solid #15131C;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.deposit-page-form {
    margin-top: 2rem;
}

.deposit-page-form-group {
    margin-bottom: 1.5rem;
}

.deposit-page-form-group label {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: #067AFF;
}

.deposit-page-select {
    width: 100%;
    padding: 0.75rem;
    background-color: #000000;
    border: 2px solid #15131C;
    border-radius: 8px;
    color: var(--deposit-page-text);
}

.deposit-page-address {
    display: flex;
    align-items: center;
    background-color: #000000;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid #15131C;
}

.deposit-page-address span {
    flex: 1;
    word-break: break-all;
}

.deposit-page-btn-copy {
    background: none;
    border: none;
    color: var(--deposit-page-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.deposit-page-btn-copy:hover {
    color: var(--deposit-page-primary-hover);
}



.deposit-page-select,
.deposit-page-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #000000;
    border: 1px solid #15131C;
    border-radius: 8px;
    color: var(--withdraw-text);
}

.deposit-page-select {
    position: relative;
    cursor: pointer;
}

.deposit-page-selected-token {
    display: flex;
    align-items: center;
}

.deposit-page-selected-token i {
    margin-left: auto;
}

.deposit-page-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    border: 1px solid #15131C;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.deposit-page-dropdown.show {
    display: block;
}

.deposit-page-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.deposit-page-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}



/* Deposit end here */





/* Withdraw page start here */



.withdraw-page-main {
    display: grid;
    gap: 2rem;
}

.withdraw-page-form {
    background-color: #000000;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #15131C;
}

.withdraw-page-form h2{
    padding-bottom: 1rem !important;
}
.withdraw-page-input-group {
    margin-bottom: 1.5rem;
}

.withdraw-page-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--withdraw-primary);
}

.withdraw-page-select,
.withdraw-page-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #000000;
    border: 1px solid #15131C;
    border-radius: 8px;
    color: var(--withdraw-text);

}

.withdraw-page-select {
    position: relative;
    cursor: pointer;
}

.withdraw-page-selected-token {
    display: flex;
    align-items: center;
}

.withdraw-page-selected-token i {
    margin-left: auto;
}

.withdraw-page-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    border: 1px solid #15131C;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.withdraw-page-dropdown.show {
    display: block;
}

.withdraw-page-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.withdraw-page-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.withdraw-page-fee {
    display: flex;
    justify-content: space-between;
    color: var(--withdraw-text-muted);
    margin-bottom: 1.5rem;
}

.withdraw-page-btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: #ffffff;
    color: #0056b3;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}


.withdraw-page-amount {
    display: flex;
    align-items: center;
    background-color: #000000;
}

.withdraw-max-btn{
    border: none;
    background: none;
    font-size: 1rem;
    color: #0066ff;
    cursor: pointer;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.withdraw-page-btn-primary:hover {
    background-color: var(--withdraw-primary-hover);
}
/* Withdraw page end here */
.wallet-balance-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.wallet-btn-primary {
    background-color: #ffffff;
    color: #0066ff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
}

.wallet-btn-outline {
    background-color: #ffffff;
    border: none;
    color: #0066ff;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
}

/* Auto Mining Modal Styling */

.dashboard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.dashboard-modal.show {
    display: flex;
}

.dashboard-modal-content {
    background: #000000;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.inactive{
    color: #ef4444;
}



.status-text {
    font-size: 14px;
    color: #0077ff;
    padding-top: 1rem;
}
.auto-btn-primary{
    background-color: var(--primary-color);
    color: #0066ff;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;

}
.automining2{
    display: none;
}

/*Verify*/

