* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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;
}

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

/* 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;
}

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

.nav-link:hover {
    color: #f0b90b;
}

.badge {
    background-color: #ffc107;
    color: #000;
    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: #f0b90b;
}

.signup-link {
    background-color: #f0b90b;
    color: #000;
    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: #e0ad0a;
}

.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: #1fcf90;
    margin-right: 0.5rem;
}

.verified-url {
    color: #1fcf90;
}

.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: #f0b90b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.logo i {
    color: #f0b90b;
}

.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: #f0b90b;
    color: #000;
    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: #e0ad0a;
}

.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: #f0b90b;
}

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

.tip-arrow {
    color: #f0b90b;
    margin-top: 0.5rem;
}

.customer-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #f0b90b;
    color: #000;
    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: #f0b90b;
}

.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: #f0b90b;
}

/* 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 .nav-link:hover {
    color: #f0b90b;
}

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: #f0b90b;
}

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: #f0b90b;
    color: #000;
}

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

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: #f0b90b;
}

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: #f0b90b;
}

/* 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: #f0b90b;
}

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

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

.trade-icon {
    background-color: #fff;
}

.trade-icon.advanced {
    background: linear-gradient(45deg, #f0b90b, #fff);
}

.trade-icon.grid {
    background: linear-gradient(45deg, #fff, #f0b90b);
}

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

.futures-icon {
    background-color: #f0b90b;
}

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

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

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

.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 .menu-dropdown-item:hover {
    background-color: #e8e8e8;
}

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;
}

/* 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; }
}

.modal-content {
    position: relative;
    background: #181A20;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZGFya2V4LXBhdHRlcm4iIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cGF0aCBkPSJNMjAsNjAgTDQwLDgwIEw2MCw2MCBMODAsODAgTDYwLDYwIEw4MCw0MCBMNjAsNjAgTDQwLDQwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFhMWQyNiIgc3Ryb2tlLXdpZHRoPSIxIiAvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkYXJrZXgtcGF0dGVybikiIC8+PC9zdmc+');
    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);
}

@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;
}

.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;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    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;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
}

.verified-icon {
    background: linear-gradient(145deg, #03A66D, #02C076);
    color: white;
}

.unverified-icon {
    background: linear-gradient(145deg, #F0B90B, #F6CA65);
    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: #F0B90B;
    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(240, 185, 11, 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: #F0B90B;
    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: #F0B90B;
    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(3, 166, 109, 0.15);
    color: #03A66D;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

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

.warning-text {
    color: #F0B90B !important;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(240, 185, 11, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #F0B90B;
}

.warning-text i {
    color: #F0B90B;
    font-size: 16px;
}

/* Light Theme Adjustments for Staff Card */
body.light-theme .staff-avatar {
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border-color: rgba(240, 185, 11, 0.3);
    color: #F0B90B;
}

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: #F0B90B;
}

body.light-theme .warning-text {
    background-color: rgba(240, 185, 11, 0.1);
    border-left-color: #F0B90B;
}

body.light-theme .verified-badge {
    background-color: rgba(3, 166, 109, 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);
}

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

.security-tip-header i {
    color: #F0B90B;
    margin-right: 10px;
    font-size: 18px;
}

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

.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;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(22, 22, 26, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0 0 15px 15px;
}

.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: linear-gradient(90deg, #1a9aff, #3f5efb);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(63, 94, 251, 0.3);
}

.ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 94, 251, 0.4);
}

.ok-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
}

.ok-btn:hover:before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

/* Light Theme Adjustments */
body.light-theme .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(245, 245, 250, 0.8);
}

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: #F0B90B;
    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;
    background-image: 
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZGFya2V4LXBhdHRlcm4iIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cGF0aCBkPSJNMjAsNjAgTDQwLDgwIEw2MCw2MCBMODAsODAgTDYwLDYwIEw4MCw0MCBMNjAsNjAgTDQwLDQwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFhMWQyNiIgc3Ryb2tlLXdpZHRoPSIxIiAvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkYXJrZXgtcGF0dGVybikiIC8+PC9zdmc+');
    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-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTE4LjI0NCAyLjI1aDMuMzA4bC03LjIyNyA4LjI2IDguNTAyIDExLjI0SDE2LjE3bC01LjIxNC02LjgxN0w0Ljk5IDIxLjc1SDEuNjhsNy43My04LjgzNUwxLjI1NCAyLjI1SDguMDhsNC43MTMgNi4yMzF6bS0xLjE2MSAxNy41MmgxLjgzM0w3LjA4NCA0LjEyNkg1LjExN3oiIGZpbGw9InJnYmEoMjQwLDE4NSwxMSwwLjEpIi8+PC9zdmc+');
    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;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZGFya2V4LXBhdHRlcm4tbGlnaHQiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cGF0aCBkPSJNMjAsNjAgTDQwLDgwIEw2MCw2MCBMODAsODAgTDYwLDYwIEw4MCw0MCBMNjAsNjAgTDQwLDQwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2YwZjBmMCIgc3Ryb2tlLXdpZHRoPSIxIiAvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkYXJrZXgtcGF0dGVybi1saWdodCkiIC8+PC9zdmc+');
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .modal-content::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTE4LjI0NCAyLjI1aDMuMzA4bC03LjIyNyA4LjI2IDguNTAyIDExLjI0SDE2LjE3bC01LjIxNC02LjgxN0w0Ljk5IDIxLjc1SDEuNjhsNy43My04LjgzNUwxLjI1NCAyLjI1SDguMDhsNC43MTMgNi4yMzF6bS0xLjE2MSAxNy41MmgxLjgzM0w3LjA4NCA0LjEyNkg1LjExN3oiIGZpbGw9InJnYmEoMjQwLDE4NSwxMSwwLjEpIi8+PC9zdmc+');
}

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

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;
}

body.light-theme .modal-footer {
    background-color: rgba(245, 245, 245, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
} 