/* Custom Font - HarmonyOS Sans */
@font-face {
    font-family: 'HarmonyOS Sans';
    src: url('font/HarmonyOS_Sans_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* HarmonyOS Sans Font Utility Class */
.font-harmony {
    font-family: 'HarmonyOS Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HarmonyOS Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #0c0e12;
    color: #fff;
    line-height: 1.5;
    min-height: 100vh;
    font-size: 13px;
}

/* Main Header Styles */
.main-header {
    background-color: #0c0e12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(70px);
    user-select: none;
    height: 54px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
}

.logo-icon {
    margin-right: 8px;
}

.main-nav {
    flex: 1;
    margin: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #eaecef;
    text-decoration: none;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link i {
    font-size: 9px;
    margin-left: 5px;
    opacity: 0.7;
}

.nav-link:hover {
    color: #38D9B2;
}

.badge {
    background-color: #38D9B2;
    color: #fff;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 2px;
    margin-left: 4px;
    font-weight: 600;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link, .download-link {
    color: #eaecef;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
}

.login-link:hover, .download-link:hover {
    color: #38D9B2;
}

.signup-link {
    background-color: #42FFD1;
    color: #000000;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.2s;
    letter-spacing: 0.1px;
    height: 28px;
    display: flex;
    align-items: center;
}

.signup-link:hover {
    background-color: #3CE8BE;
}

.signup-link:active {
    outline: 3px solid #2FB594;
    outline-offset: 2px;
}

.signup-link:focus {
    outline: 3px solid #3CE8BE;
    outline-offset: -2px;
}

body.light-theme .signup-link {
    background-color: #38D9B2;
}

body.light-theme .signup-link:hover {
    background-color: #2FB594;
}

body.light-theme .signup-link:active {
    outline: 3px solid #248C73;
    outline-offset: 2px;
}

body.light-theme .signup-link:focus {
    outline: 3px solid #2FB594;
    outline-offset: -2px;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #eaecef;
    cursor: pointer;
    font-size: 16px;
}

.language-selector {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #eaecef;
}

/* Existing Styles */
.top-banner {
    background-color: #2b3139;
    color: #eaecef;
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #363c45;
}

.url-verification {
    font-size: 0.85rem;
}

.url-verification i {
    color: #38D9B2;
    margin-right: 0.5rem;
}

.verified-url {
    color: #38D9B2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.verification-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #38D9B2;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.logo i {
    color: #38D9B2;
}

.subtitle {
    color: #848e9c;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.85rem;
    line-height: 1.3;
}

.search-section {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
    gap: 0.4rem;
}

.search-dropdown {
    width: 120px;
    position: relative;
}

.dropdown-btn {
    width: 100%;
    padding: 0.7rem 0.8rem;
    background-color: #1e2026;
    color: #eaecef;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 12px;
    height: 36px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e2026;
    min-width: 130px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: #eaecef;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
    font-size: 12px;
}

.dropdown-content a:hover {
    background-color: #2b3139;
}

.show {
    display: block;
}

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

.search-input i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #848e9c;
    font-size: 13px;
}

.search-input input {
    width: 100%;
    padding: 0.7rem 0.8rem 0.7rem 2.2rem;
    background-color: #1e2026;
    color: #eaecef;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    height: 36px;
}

.search-input input:focus {
    outline: none;
    background-color: #2b3139;
}

.search-btn {
    padding: 0.7rem 1.5rem;
    background-color: #42FFD1;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 12px;
    height: 36px;
    line-height: 1;
}

.search-btn:hover {
    background-color: #3CE8BE;
}

.search-btn:active{
    outline: 3px solid #2FB594;
    outline-offset: 2px;
}

.search-btn:focus {
    outline: 3px solid #3CE8BE;
    outline-offset: -2px;
}

.security-tips {
    margin-top: 4rem;
}

.security-tips h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #eaecef;
    font-size: 1.2rem;
    font-weight: 500;
}

.tips-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tip-card {
    background-color: #1e2026;
    border-radius: 6px;
    padding: 1.1rem;
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    background-color: #2b3139;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.tip-icon i {
    font-size: 1.25rem;
    color: #38D9B2;
}

.tip-title {
    text-align: center;
    font-weight: 500;
    color: #eaecef;
    font-size: 0.85rem;
    min-height: 40px;
}

.tip-arrow {
    color: #38D9B2;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.customer-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #38D9B2;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.2s;
}

.customer-support:hover {
    transform: scale(1.05);
}

/* Footer Styles */
.main-footer {
    background-color: #000;
    padding: 50px 0 30px;
    margin-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer-left {
    width: 25%;
    padding-right: 20px;
}

.footer-right {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo .x-logo {
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
}

.footer-social i {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-social i:hover {
    color: #38D9B2;
}

.footer-copyright {
    color: #848e9c;
    font-size: 0.85rem;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section.links-section {
    flex: 0 0 22%;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #848e9c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #38D9B2;
}

/* Light Theme Styles */
body.light-theme {
    background-color: #f5f5f5;
    color: #1e2026;
}

body.light-theme .main-header {
    background-color: #fff;
    border-bottom-color: #e6e8ea;
}

body.light-theme .logo-link,
body.light-theme .nav-link {
    color: #1e2026;
}

body.light-theme .signup-link {
    background-color: #38D9B2;
    color: #fff;
}



body.light-theme .nav-link:hover {
    color: #38D9B2;
}

body.light-theme .login-link,
body.light-theme .download-link {
    color: #1e2026;
}

body.light-theme .login-link:hover,
body.light-theme .download-link:hover {
    color: #38D9B2;
}

body.light-theme .theme-toggle {
    color: #1e2026;
}

body.light-theme .language-selector {
    color: #1e2026;
}

body.light-theme .top-banner {
    background-color: #f0f0f0;
    color: #1e2026;
    border-bottom-color: #e6e8ea;
}

body.light-theme .dropdown-btn,
body.light-theme .search-input input {
    background-color: #f5f5f5;
    color: #1e2026;
    border: 1px solid #e6e8ea;
}

body.light-theme .dropdown-content {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .dropdown-content a {
    color: #1e2026;
}

body.light-theme .dropdown-content a:hover {
    background-color: #f5f5f5;
}

body.light-theme .search-btn {
    background-color: #38D9B2;
    color: #FFFFFF;
}

body.light-theme .search-btn:hover {
    background-color: #2FB594;
}

body.light-theme .search-btn:active {
    outline: 3px solid #2FB594;
    outline-offset: 2px;
}

body.light-theme .search-btn:focus {
    outline: 3px solid #248C73;
    outline-offset: -2px;
}

body.light-theme .tip-card {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .tip-icon {
    background-color: #f5f5f5;
}

body.light-theme .tip-title {
    color: #1e2026;
}

body.light-theme .subtitle,
body.light-theme .search-input i {
    color: #76808f;
}

body.light-theme .security-tips h2 {
    color: #1e2026;
}

body.light-theme .main-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #e6e8ea;
}

body.light-theme .footer-heading {
    color: #1e2026;
}

body.light-theme .footer-links a {
    color: #505050;
}

body.light-theme .footer-links a:hover {
    color: #38D9B2;
}

body.light-theme .footer-logo {
    color: #1e2026;
}

body.light-theme .footer-social a {
    color: #1e2026;
}

body.light-theme .footer-social i {
    color: #1e2026;
}

body.light-theme .footer-copyright {
    color: #505050;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }

    .footer-section.links-section {
        flex: 0 0 45%;
    }

    .footer-left {
        width: 30%;
    }

    .footer-right {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .user-actions .login-link,
    .user-actions .download-link,
    .user-actions .language-selector {
        display: none;
    }

    .search-section {
        flex-direction: column;
    }

    .search-dropdown {
        width: 100%;
        max-width: initial;
    }

    .search-input input {
        font-size: 12px;
    }

    .tips-container {
        flex-direction: column;
        align-items: center;
    }

    .tip-card {
        width: 100%;
        max-width: 400px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-section.links-section {
        flex: 0 0 45%;
    }

    .dropdown-menu {
        left: 0;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section.links-section {
        flex: 0 0 100%;
    }
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.nav-link:hover + .dropdown-menu,
.dropdown-menu:hover,
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown-active .dropdown-menu {
    display: block;
}

/* Create a slight delay before closing dropdown to prevent accidental closures */
.nav-item.dropdown-active .dropdown-menu {
    display: block;
}

.dropdown-menu {
    position: absolute;
    min-width: 300px;
    z-index: 1000;
    padding: 0.2rem 0;
    background-color: #1a1b23;
    border: 1px solid #2a2c3e;
    border-radius: 4px;
    top: 100%;
    left: -20px;
    display: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.dropdown-menu.menu-dropdown-list {
    padding: 0.3rem 0;
}

.dropdown-menu .menu-link {
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 6px 12px;
    color: #b7bdc6;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.15s;
}

.dropdown-menu .menu-link:hover {
    background-color: #2a2b36;
    color: #38D9B2;
}

/* Add space below dropdown to prevent it from closing */
.dropdown-menu::after {
    content: '';
    position: absolute;
    height: 15px;
    width: 100%;
    bottom: -15px;
    left: 0;
    cursor: default;
}

/* Menu Link Styles */
.menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.menu-link:active {
    background-color: #303440;
}

/* Buy Crypto Dropdown Styles */
.buy-crypto-dropdown {
    display: flex;
    padding: 0;
    background-color: #262930;
    align-items: center;
}

.buy-crypto-dropdown .menu-link {
    display: flex;
    width: 100%;
    padding: 20px;
}

/* Generic Dropdown Item Styles */
.menu-dropdown-item {
    display: flex;
    padding: 0;
    background-color: #262930;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.menu-dropdown-item .menu-link {
    padding: 12px;
}

.menu-dropdown-item:hover {
    background-color: #303440;
}

.menu-dropdown-list .menu-dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-dropdown-list .menu-dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-icon {
    margin-right: 12px;
}

.coin-icon, .icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.coin-icon {
    background-color: #38D9B2;
}

.market-icon  {
    background-color: #38D9B2;
    position: relative;
}

/*.market-icon::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -5px;*/
/*    right: -5px;*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    background-color: #42FFD1;*/
/*    border-radius: 50%;*/
/*}*/

.trade-icon {
    background-color: #38D9B2;
    position: relative;
}

.trade-icon.advanced {
    background: #38D9B2;
}

.trade-icon.grid {
    background: #38D9B2;
}

.trade-icon.copy {
    background-color: #38D9B2;
}

.futures-icon {
    background-color: #38D9B2;
}

.futures-icon.data {
    background-color: #38D9B2;
}

.futures-icon.tutorial {
    background-color: #38D9B2;
}

.icon-wrapper i {
    font-size: 14px;
}

/* Trade icon colors - white for both themes */
.icon-wrapper.trade-icon i,
.icon-wrapper.trade-icon.advanced i,
.icon-wrapper.trade-icon.grid i {
    color: #fff !important;
}

/* Futures tutorial icon - white for dark theme */
.icon-wrapper.futures-icon.tutorial i {
    color: #fff !important;
}

.dropdown-content-wrapper {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.fire-emoji {
    font-size: 14px;
    margin-left: 5px;
}

.dropdown-description {
    color: #848e9c;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}

/* Light Theme Dropdown Styles */
body.light-theme .dropdown-menu {
    background-color: #fff;
    border: 1px solid #e6e8ea;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

body.light-theme .buy-crypto-dropdown,
body.light-theme .menu-dropdown-item {
    background-color: #f5f5f5;
}

body.light-theme .buy-crypto-dropdown:hover,
body.light-theme .menu-dropdown-item:hover {
    background-color: #fafafa;
}

body.light-theme .dropdown-menu .menu-link:hover {
    background-color: #fafafa;
}

body.light-theme .menu-dropdown-list .menu-dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .dropdown-title {
    color: #1e2026;
}

body.light-theme .dropdown-description {
    color: #76808f;
}

/* Light Theme Icon Colors */
body.light-theme .coin-icon,
body.light-theme .market-icon,
body.light-theme .trade-icon,
body.light-theme .trade-icon.advanced,
body.light-theme .trade-icon.grid,
body.light-theme .trade-icon.copy,
body.light-theme .futures-icon,
body.light-theme .futures-icon.data,
body.light-theme .futures-icon.tutorial {
    background-color: #42FFD1;
}

/* Modal and Verification Styles - Enhanced Design */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#verification-result {
    text-align: center;
    padding: 30px 25px 20px;
}

.verification-title {
    font-size: 22px;
    margin: 15px 0 10px;
    font-weight: 700;
    color: #EAECEF;
    letter-spacing: -0.2px;
}

body.light-theme .verification-title{
    color: #000000;
}

.verification-description {
    font-size: 14px;
    color: #848E9C;
    margin-bottom: 20px;
    line-height: 1.6;
}

.verified-icon, .unverified-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.verified-icon::before, .unverified-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

/*.verified-icon {*/
/*    background: linear-gradient(145deg, #38D9B2, #42FFD1);*/
/*    color: white;*/
/*}*/

/*.unverified-icon {*/
/*    background: linear-gradient(145deg, #38D9B2, #42FFD1);*/
/*    color: white;*/
/*}*/

/*.verified-icon i, .unverified-icon i {*/
/*    font-size: 40px;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/
/*}*/

.staff-info {
    background-color: rgba(43, 47, 54, 0.5);
    border-radius: 12px;
    padding: 16px;
    margin: 15px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.staff-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.staff-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #232630, #323642);
    color: #38D9B2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(56, 217, 178, 0.3);
}

.staff-text {
    flex: 1;
}

.staff-text h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #EAECEF;
}

.staff-title {
    color: #848E9C;
    margin: 0;
    font-size: 13px;
}

.staff-contact {
    margin-top: 5px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38D9B2;
    margin-bottom: 6px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 14px;
    width: 24px;
    text-align: center;
}

.contact-item span {
    font-size: 14px;
}

.contact-item a {
    color: #38D9B2;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.staff-badge {
    margin-top: 5px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(56, 217, 178, 0.15);
    color: #38D9B2;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.verified-badge i {
    font-size: 12px;
}

.warning-text {
    color: #F4B427 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #332912;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #F4B427;
    text-align: left;
    padding: 12px 18px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.warning-text img {
    color: #F4B427;
}

/* Light Theme Adjustments for Staff Card */
body.light-theme .staff-avatar {
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border-color: rgba(56, 217, 178, 0.3);
    color: #38D9B2;
}

body.light-theme .staff-text h4 {
    color: #1E2026;
}

body.light-theme .staff-title {
    color: #474D57;
}

body.light-theme .staff-contact {
    border-top-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-item,
body.light-theme .contact-item a {
    color: #38D9B2;
}

body.light-theme .warning-text {
    background-color: #FEF8E9;
}

body.light-theme .verified-badge {
    background-color: rgba(56, 217, 178, 0.1);
}

/* Responsiveness for Staff Card */
@media (max-width: 480px) {
    .staff-profile {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-avatar {
        margin-bottom: 10px;
    }
}

/* Security Tip Box Styles */
.security-tip-box {
    background-color: rgba(43, 47, 54, 0.5);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .security-tip-box {
    background-color: #FAFAFA;
}

.security-tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.security-tip-header img {
    color: #42FFD1;
    margin-right: 10px;
    height: 18px;
    width: 18px;
}

.security-tip-title {
    margin: 0;
    font-size: 16px;
    color: #EAECEF;
    font-weight: 600;
}

body.light-theme .security-tip-title {
    color:#000000;
}

.security-tip-list {
    margin: 0;
    padding-left: 34px;
    list-style-type: disc;
}

.security-tip-list li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #848E9C;
    line-height: 1.5;
}

.security-tip-list li:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px;
    text-align: center;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.modal-btn {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
    flex: 1;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ok-btn {
    padding: 12px 40px;
    margin: 0 auto;
    background: #42FFD1;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.ok-btn:hover {
    background-color: #3CE8BE;
}

.ok-btn:active{
    outline: 3px solid #2FB594;
    outline-offset: 2px;
}

.ok-btn:focus {
    outline: 3px solid #3CE8BE;
    outline-offset: -2px;
}

.light-theme .ok-btn {
    background: #38D9B2;
}

.light-theme .ok-btn:hover {
    background-color: #2FB594;
}

.light-theme .ok-btn:active {
    outline: 3px solid #248C73;
    outline-offset: 2px;
}

.light-theme .ok-btn:focus {
    outline: 3px solid #2FB594;
    outline-offset: -2px;
}




/* Light Theme Adjustments */

body.light-theme .modal-btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light-theme .modal-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

body.light-theme .ok-btn {
    /*background: linear-gradient(90deg, #0086e6, #3f5efb);*/
    color: white;
}

/* Loading Animation */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.loading-spinner i {
    color: #38D9B2;
    font-size: 40px;
    animation: spin 1.2s linear infinite;
}

.loading-spinner span {
    margin-top: 20px;
    color: #848E9C;
    font-size: 16px;
}

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

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Modal Content Pattern & Logo */
.modal-content {
    position: relative;
    background: #181A20;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Light Theme Adjustments for Modal */
body.light-theme .modal-content {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .modal-content::after {
}

body.light-theme .loading-spinner i {
    color: #38D9B2;
}

body.light-theme .loading-spinner span {
    color: #474D57;
}

body.light-theme .modal-btn {
    color: #474D57;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .modal-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1E2026;
}


.tip-card a {
    color: white;
    text-decoration: none;
}

.theme-tip-icon{
    height: 50px;
    width: 50px;
}