 
:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-tertiary: #21262d;
  --bg-card: #161b22;
  --border-color: #30363d;
  --border-color-hover: #8b5cf6;
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --brand-purple: #a855f7;
  --brand-blue: #3b82f6;
  --brand-gradient: linear-gradient(135deg, #a855f7, #3b82f6);
  --color-success: #238636;
  --color-warning: #d2991b;
  --color-info: #58a6ff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 40px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
}

 
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap; gap: 15px;
}
.logo {
  font-size: 24px; font-weight: 700;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 32px; font-weight: 500; }
.nav-links a { color: var(--text-secondary); font-size: 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-purple); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }

.lang-current, .btn-recharge, .btn-outline, .asset-dropdown-btn, .user-avatar-btn, .btn-primary {
  height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.lang-current {
  width: 42px; height: 42px; background: var(--bg-tertiary);
  color: #b0b9d0; border-radius: 50%; position: relative; font-size: 24px;
}
.lang-current:hover { background: #3a3a4a; }
.btn-recharge {
  background: linear-gradient(135deg, #7b68ee, #42a5f5);
  color: #fff; border: none; padding: 0 16px;
}
.btn-recharge:hover { opacity: 0.9; }
.btn-outline {
  background: transparent; border: 1px solid var(--brand-purple);
  color: var(--brand-purple); padding: 0 16px;
}
.btn-outline:hover { background: rgba(168,85,247,0.1); }
.btn-primary {
  background: var(--brand-gradient); color: #fff; border: none; padding: 0 16px;
}
.btn-primary:hover { opacity: 0.9; }
.asset-dropdown-btn {
  background: transparent; border: 1px solid var(--brand-purple);
  color: var(--brand-purple); padding: 0 16px;
}
.asset-dropdown-btn:hover { background: rgba(168,85,247,0.1); }
.user-avatar-btn {
  width: 36px; background: var(--brand-purple); color: #fff;
  border-radius: 50%; overflow: hidden;
}
.user-avatar-btn img { width: 100%; height: 100%; object-fit: cover; }

.lang-dropdown, .asset-submenu, .dropdown-menu {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: var(--bg-secondary); border-radius: var(--radius-md);
  padding: 8px 0; min-width: 180px;
  box-shadow: var(--shadow-md); display: none; z-index: 200;
}
.lang-dropdown.show, .asset-submenu.show, .dropdown-menu.show { display: block; }
.lang-dropdown div, .asset-submenu a, .dropdown-menu a {
  display: block; padding: 10px 16px;
  color: #b0c4de; font-size: 14px; cursor: pointer;
}
.lang-dropdown div:hover, .asset-submenu a:hover, .dropdown-menu a:hover {
  background: var(--bg-tertiary); color: #fff;
}
.asset-submenu { min-width: 240px; padding: 12px 0; }
.asset-overview {
  padding: 8px 16px; border-bottom: 1px solid var(--border-color);
  margin-bottom: 8px; color: var(--text-secondary); font-size: 13px;
}
.asset-overview .balance { font-size: 20px; font-weight: 700; color: #fff; margin-top: 4px; }
.asset-submenu a i { width: 18px; text-align: center; }

 
.notification-icon { position: relative; cursor: pointer; font-size: 20px; color: #b0b9d0; }
.notification-icon .badge {
  position: absolute; top: -8px; right: -8px;
  background: #ef4444; color: white; font-size: 10px;
  border-radius: 50%; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.notification-dropdown {
  position: absolute; top: 40px; right: 0; width: 380px;
  background: #0a0a0f; border: 1px solid var(--border-color);
  border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1000; display: none;
}
.notification-dropdown.show { display: block; }
.notification-dropdown .dropdown-body::-webkit-scrollbar { width: 6px; }
.notification-dropdown .dropdown-body::-webkit-scrollbar-track { background: transparent; }
.notification-dropdown .dropdown-body::-webkit-scrollbar-thumb {
  background: #3a4a6b; border-radius: 10px;
}
.notification-dropdown .dropdown-body::-webkit-scrollbar-thumb:hover { background: var(--brand-purple); }
.notification-dropdown .dropdown-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 14px; border-bottom: 1px solid var(--border-color);
}
.notification-dropdown .dropdown-header .new-count { color: #fff; font-size: 16px; font-weight: 700; }
.notification-dropdown .dropdown-header .new-count span { font-weight: 800; font-size: 20px; color: #f59e0b; }
.notification-dropdown .dropdown-header a.expand-link { color: #fff; font-weight: 700; font-size: 14px; }
.notification-dropdown .dropdown-header a.expand-link:hover { opacity: 0.8; }
.notification-dropdown .dropdown-body { max-height: 350px; overflow-y: auto; }
.notification-dropdown .noti-item {
  display: flex; align-items: flex-start; padding: 12px 16px;
  border-bottom: 1px solid #1a1a24; cursor: pointer;
  transition: background 0.2s; gap: 10px;
  background: #0d0d15;
}
.notification-dropdown .noti-item:hover { background: #15151f; }
.notification-dropdown .noti-item.unread {
  background: #08080c;
  border-left: 3px solid var(--brand-purple); padding-left: 13px;
}
.notification-dropdown .noti-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.notification-dropdown .noti-title-row { display: flex; align-items: center; gap: 8px; }
.notification-dropdown .noti-title {
  color: var(--text-primary); font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
}
.notification-dropdown .noti-tag {
  flex-shrink: 0; padding: 2px 8px; border-radius: 20px;
  font-size: 10px; font-weight: 600;
}
.tag-system { background: rgba(59,130,246,0.15); color: var(--brand-blue); }
.tag-activity { background: rgba(16,185,129,0.15); color: #10b981; }
.tag-platform { background: rgba(168,85,247,0.15); color: var(--brand-purple); }
.tag-reward { background: rgba(245,158,11,0.15); color: #f59e0b; }
.tag-news { background: rgba(236,72,153,0.15); color: #ec4899; }
.tag-security { background: rgba(239,68,68,0.15); color: #ef4444; }
.notification-dropdown .noti-content {
  color: #cdd6f4; font-size: 12px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.notification-dropdown .noti-time { color: var(--text-muted); font-size: 11px; }
.notification-dropdown .noti-arrow { color: var(--text-muted); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.notification-dropdown .dropdown-footer {
  padding: 10px 16px; text-align: center; border-top: 1px solid var(--border-color);
}
.notification-dropdown .dropdown-footer a { color: var(--brand-purple); font-size: 13px; text-decoration: none; }
.dropdown-loading { text-align: center; padding: 20px; color: var(--text-secondary); }

 
.modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); align-items: center; justify-content: center; z-index: 1100;
}
.modal.show { display: flex; }
.modal-content {
  background: var(--bg-secondary); border-radius: 28px; padding: 32px;
  width: 90%; max-width: 420px;
  border: 1px solid var(--border-color); box-shadow: 0 25px 40px rgba(0,0,0,0.5);
}
.modal-content h2 { text-align: center; margin-bottom: 24px; color: white; font-size: 24px; }
.modal-content .close { float: right; font-size: 24px; cursor: pointer; color: var(--text-secondary); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #b0c4de; font-size: 13px; }
.form-group input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-tertiary); border: 1px solid #3a4a6b;
  border-radius: 40px; color: white; font-size: 14px;
}
.btn-login {
  width: 100%; padding: 12px;
  background: var(--brand-gradient); border: none; border-radius: 40px;
  color: white; font-weight: 600; cursor: pointer;
}
.error-msg { color: #ff6b6b; text-align: center; margin-top: 16px; font-size: 13px; }
.social-login-section { margin-top: 24px; text-align: center; }
.social-login-divider { display: flex; align-items: center; color: var(--text-secondary); font-size: 13px; margin: 20px 0; }
.social-login-divider::before, .social-login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border-radius: 30px; font-size: 15px; font-weight: 500;
  cursor: pointer; border: 1px solid #3a4a6b;
  background: var(--bg-tertiary); color: var(--text-primary);
  text-decoration: none; width: 100%; transition: all 0.2s;
}
.social-btn.google { background: #fff; color: #1e1e2a; border-color: #ddd; }
.social-btn.google:hover { background: #f5f5f5; }
.social-btn.telegram { background: #27a7e7; color: #fff; border-color: #27a7e7; }
.social-btn.telegram:hover { background: #1f8bc3; }

 
.card {
  background: var(--bg-secondary); border-radius: var(--radius-xl);
  padding: 24px; margin-bottom: 30px; border: 1px solid var(--border-color);
}
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; }
.card h2 { font-size: 20px; color: var(--text-primary); font-weight: 600; }
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 12px 8px;
  color: var(--text-secondary); font-weight: 500; font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}
td { padding: 16px 8px; border-bottom: 1px solid var(--border-color); }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 40px; font-size: 12px; font-weight: 500; }
.status-0 { background: rgba(255,193,7,0.2); color: var(--color-warning); }
.status-1 { background: rgba(40,167,69,0.2); color: var(--color-success); }
.status-2 { background: rgba(23,162,184,0.2); color: var(--color-info); }
.btn-small {
  padding: 6px 16px; border-radius: 30px; font-size: 12px;
  background: rgba(168,85,247,0.2); border: 1px solid var(--brand-purple);
  color: var(--brand-purple); cursor: pointer; display: inline-block; margin-right: 8px;
}
.btn-small:hover { background: var(--brand-purple); color: #fff; }

 
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: none;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.page-btn:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--brand-purple);
  color: var(--text-primary);
}
.page-btn.active {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
  cursor: default;
}
.page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}

.prev-btn span,
.next-btn span {
  margin: 0 4px;
}

@media (max-width: 480px) {
  .prev-btn span,
  .next-btn span {
    display: none;
  }
  .page-btn {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
    padding: 0 8px;
  }
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  font-weight: 500;
  user-select: none;
}

.loading { text-align: center; padding: 40px; color: var(--text-secondary); }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.notice-link:hover { text-decoration: underline; }

 
.hero { display: flex; align-items: center; justify-content: space-between; padding: 80px 0 60px; gap: 60px; flex-wrap: wrap; }
.hero-content { flex: 1; min-width: 280px; }
.hero-badge {
  display: inline-block; background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.3); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: 13px; color: #c084fc; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.2; margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #c7b9ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 18px; color: var(--text-secondary); max-width: 540px; margin-bottom: 40px; line-height: 1.5; }
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 50px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: 32px; font-weight: 700; color: white; }
.stat-label { font-size: 14px; color: #7c85a2; }
.hero-visual {
  flex: 1; background: rgba(20, 28, 40, 0.6); border-radius: 36px;
  padding: 28px; backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 25px 45px rgba(0,0,0,0.3); min-width: 280px;
}
.price-card { background: rgba(12, 16, 24, 0.7); border-radius: var(--radius-xl); padding: 20px; }
.price-header { display: flex; justify-content: space-between; margin-bottom: 20px; color: var(--text-secondary); font-size: 13px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.price-row:last-child { border-bottom: none; }
.coin { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.coin img { width: 24px; height: 24px; margin-right: 4px; }
.price-value { font-weight: 600; color: white; }
.change-positive { color: #3adb76; }
.change-negative { color: #ff6b6b; }

 
.features { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.section-title {
  text-align: center; font-size: 38px; font-weight: 700; margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #b9acff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { text-align: center; color: #8a93b0; font-size: 18px; max-width: 700px; margin: 0 auto 60px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: rgba(20, 28, 40, 0.6); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px; padding: 32px 24px; backdrop-filter: blur(8px); transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px); background: rgba(30, 40, 60, 0.7);
  border-color: rgba(168,85,247,0.3);
}
.feature-icon {
  width: 56px; height: 56px; background: rgba(168,85,247,0.15);
  border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.feature-icon i { font-size: 28px; color: var(--brand-purple); }
.feature-title { font-size: 22px; font-weight: 600; margin-bottom: 12px; color: white; }
.feature-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.5; }

 
.footer {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0;
  color: var(--text-muted); font-size: 13px;
}
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { color: #8a93b0; transition: color 0.2s; }
.footer-links a:hover { color: white; }

 
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-desc { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .navbar { flex-direction: column; align-items: stretch; }
    .nav-links { justify-content: center; gap: 16px; }
    .nav-right { justify-content: center; }
    .lang-current, .btn-recharge, .btn-outline, .btn-primary, .asset-dropdown-btn, .user-avatar-btn { height: 32px; font-size: 12px; }
    .btn-recharge, .asset-dropdown-btn, .btn-outline, .btn-primary { padding: 0 12px; }
    .lang-current, .user-avatar-btn { width: 32px; }
    .lang-current { font-size: 20px; }
    .hero-title { font-size: 40px; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .btn-large { padding: 12px 24px; }
    .notification-dropdown { width: 290px; right: -40px; }
}
 
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(59,130,246,0.08));
    border: 1px solid rgba(168,85,247,0.45);
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(168,85,247,0.35), 0 4px 20px rgba(0,0,0,0.3);
}

.back-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #a855f7 20%, 
        #3b82f6 50%, 
        #a855f7 80%, 
        transparent 100%);
    background-size: 100% 200%;
    opacity: 0.9;
    animation: flowLight 2s linear infinite;
}

@keyframes flowLight {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.back-link:hover {
    background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(59,130,246,0.16));
    border-color: #a855f7;
    box-shadow: 0 0 24px rgba(168,85,247,0.55), 0 6px 24px rgba(0,0,0,0.45);
    transform: translateY(-1px);
}

.back-link:hover::before {
    animation-duration: 1.5s;
}

.back-link i {
    font-size: 14px;
    color: #a855f7;
    transition: transform 0.3s, color 0.3s;
}

.back-link:hover i {
    transform: translateX(-4px);
    color: #d8b4ff;
}

@media (max-width: 768px) {
    .back-link {
        padding: 8px 20px;
        font-size: 13px;
        border-radius: 40px;
        gap: 6px;
        font-weight: 600;
        box-shadow: 0 0 8px rgba(168,85,247,0.3), 0 2px 12px rgba(0,0,0,0.3);
    }
    .back-link i {
        font-size: 13px;
    }
    
}
 
.pc-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
    .pc-only { display: none; }
    .mobile-only { display: block; }
    .vote-container h2 { font-size: 1.2rem; }
    .vote-card {
        display: block;
        padding: 15px;
        margin-bottom: 10px;
        background: #1a1f36;
        border-radius: 8px;
        text-decoration: none;
        color: #ccc;
    }
    .vote-card h4 { margin: 0 0 8px; font-size: 1.1rem; }
    .card-info { display: flex; justify-content: space-between; font-size: 0.85rem; }
    
    .vote-detail .options-list .option-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.common-table { width: 100%; border-collapse: collapse; background: #1a1f36; }
.common-table th { background: #2a2f46; padding: 12px; text-align: left; color: #fff; }
.common-table td { padding: 12px; border-bottom: 1px solid #2a2f46; }
.common-table a { color: #4a9eff; }

.option-item { display: flex; align-items: center; margin: 10px 0; padding: 10px; background: #1a1f36; border-radius: 6px; }
.opt-name { flex: 0 0 120px; font-weight: bold; color: #fff; }
.vote-bar { flex: 1; height: 24px; background: #2a2f46; border-radius: 12px; overflow: hidden; position: relative; margin-left: 15px; }
.bar-fill { height: 100%; background: #4a9eff; border-radius: 12px; }
.vote-bar span { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 0.85rem; }

.vote-form { margin-top: 20px; padding: 15px; background: #1a1f36; border-radius: 8px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; color: #ccc; }
.form-group input, .form-group select { width: 100%; padding: 10px; border: 1px solid #2a2f46; background: #0e1124; color: #fff; border-radius: 4px; }
.btn-primary { padding: 10px 20px; background: #4a9eff; border: none; color: #fff; border-radius: 4px; cursor: pointer; }
.tip-login, .tip-voted { padding: 15px; background: #1a1f36; border-radius: 8px; color: #ccc; }

 
.more-btn-wrapper {
    position: relative;
    display: inline-block;
}
.more-btn {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 8px;
    user-select: none;
}
.more-btn:hover {
    color: var(--brand-purple);
}
.more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 200;
    min-width: 160px;
    padding: 8px 0;
}
.more-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #b0c4de;
    font-size: 14px;
    text-decoration: none;
}
.more-dropdown a:hover {
    background: var(--bg-tertiary);
    color: #fff;
}
.more-btn-wrapper:hover .more-dropdown {
    display: block;
}
 
.slider-captcha-wrap { position: relative; width: 100%; }
.slider-captcha-container { 
    width: 100%; height: 48px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
    border-radius: 24px; position: relative; user-select: none; overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}
.slider-track-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(168,85,247,0.03) 20px, rgba(168,85,247,0.03) 21px);
    border-radius: 24px; z-index: 0; pointer-events: none;
}
.slider-target-marker {
    position: absolute; top: 50%; transform: translate(-50%, -50%);
    width: 36px; height: 36px; z-index: 1; pointer-events: none;
    border-radius: 50%;
    animation: markerGlow 1.4s ease-in-out infinite;
}
@keyframes markerGlow {
    0%, 100% { box-shadow: 0 0 10px 3px rgba(168, 85, 247, 0.2), 0 0 20px 6px rgba(168, 85, 247, 0.1); }
    50% { box-shadow: 0 0 18px 6px rgba(168, 85, 247, 0.5), 0 0 35px 12px rgba(168, 85, 247, 0.25); }
}
.slider-target-dot {
    width: 14px; height: 14px; background: linear-gradient(135deg, #c084fc, #818cf8);
    border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    box-shadow: 0 0 12px 3px rgba(192, 132, 252, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: dotPulse 0.8s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}
.slider-target-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid rgba(192, 132, 252, 0.45);
    animation: ringPulse 1.6s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.slider-text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 400; pointer-events: none; z-index: 3; }
.slider-progress-fill {
    position: absolute; top: 0; left: 0; height: 100%;
    background: linear-gradient(90deg, rgba(168,85,247,0.12) 0%, rgba(99,102,241,0.08) 100%);
    border-radius: 24px 0 0 24px; z-index: 0; pointer-events: none;
    transition: width 0.05s linear;
}
.slider-progress-fill.success {
    background: linear-gradient(90deg, rgba(40,167,69,0.2) 0%, rgba(40,167,69,0.1) 100%);
    animation: successPulse 0.6s ease-out;
}
@keyframes successPulse {
    0% { opacity: 0.6; } 100% { opacity: 1; }
}
.slider-handle { 
    width: 40px; height: 40px; 
    background: linear-gradient(145deg, #a855f7 0%, #6366f1 100%);
    border-radius: 50%; position: absolute; left: 4px; top: 4px;
    cursor: pointer; z-index: 2; 
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3), 0 0 0 4px rgba(168,85,247,0.08);
    display: flex; align-items: center; justify-content: center;
}
.slider-handle:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(168, 85, 247, 0.45), 0 0 0 6px rgba(168,85,247,0.12); }
.slider-handle:active { transform: scale(0.95); }
.slider-handle svg { width: 18px; height: 18px; }
.slider-handle.success { 
    background: linear-gradient(145deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4), 0 0 0 4px rgba(40,167,69,0.1);
}
.slider-error { color: #ff6b6b; font-size: 12px; margin-top: 8px; min-height: 18px; }
 
.btn-primary,
.btn-outline,
.btn-large,
.btn-login,
.btn-recharge,
.hero-cta .btn-primary,
.hero-cta .btn-outline {
  border-radius: var(--radius-full) !important;
}

 
.loan-page, .loan-apply, .loan-detail, .insurance-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.info-table { width:100%; border-collapse:collapse; margin:20px 0; }
.info-table th, .info-table td { padding:10px; text-align:left; border-bottom:1px solid #2a2a3a; }
.info-table th { color:#9ca3af; font-weight:500; }
.status-0 { color: #ffc107; }
.status-1 { color: #17a2b8; }
.status-2 { color: #28a745; }
.status-3 { color: #dc3545; }

 
.loan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1a1f36;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #e0e5f0;
}

@media (max-width: 768px) {
    .loan-list .loan-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .insurance-page .pool-overview .stats {
        flex-direction: column;
    }
}

 
.insurance-page { max-width: 1000px; margin: 0 auto; padding: 20px 16px; }
.pool-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
.stat-card { background: #1a1f36; border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid #2a2f46; }
.stat-card i { font-size: 24px; color: #a855f7; }
.stat-label { display: block; color: #8a8f9a; font-size: 12px; }
.stat-value { color: #fff; font-weight: 600; font-size: 18px; }

.coin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.coin-card { background: #1a1f36; border-radius: 16px; padding: 20px; border: 1px solid #2a2f46; }
.coin-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.coin-header img { width: 32px; height: 32px; }
.coin-name { font-size: 18px; font-weight: 600; color: #fff; }
.coin-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.coin-stat span { color: #8a8f9a; font-size: 12px; display: block; }
.coin-stat strong { color: #e0e5f0; font-size: 14px; }

.estimated-profit { background: rgba(168,85,247,0.1); border-radius: 8px; padding: 8px 12px; margin-bottom: 12px; color: #a855f7; font-size: 14px; }

.user-stake-info p { margin: 6px 0; color: #b0c4de; font-size: 14px; }
.user-stake-info strong { color: #fff; }
.lock-notice { color: #fbbf24 !important; font-size: 13px; }
.btn-exit, .btn-stake { background: linear-gradient(135deg, #a855f7, #3b82f6); border: none; border-radius: 40px; color: #fff; padding: 10px 20px; font-weight: 500; cursor: pointer; width: 100%; margin-top: 10px; transition: transform 0.2s; }
.btn-exit { background: linear-gradient(135deg, #f85149, #dc2626); }
.input-row { display: flex; gap: 8px; align-items: center; }
.input-row .input { flex: 1; padding: 10px 16px; border-radius: 40px; background: #2a2f46; border: 1px solid #3a4a6b; color: #fff; }
.error-msg { color: #f87171; font-size: 13px; margin-top: 4px; }

.profit-history { background: #1a1f36; border-radius: 16px; padding: 20px; border: 1px solid #2a2f46; }
.profit-list { margin-top: 12px; }
.profit-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2f46; color: #e0e5f0; }
.profit-item:last-child { border-bottom: none; }
.empty-msg { text-align: center; color: #6c7a9a; padding: 20px; }

@media (max-width: 768px) {
    .pool-stats-grid { grid-template-columns: 1fr; }
    .coin-grid { grid-template-columns: 1fr; }
    .coin-stats { grid-template-columns: 1fr; }
}
 
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
 
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.2s ease;
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.custom-modal {
    background: #1e1e2a;
    border-radius: 20px;
    border: 1px solid #2a2a3a;
    padding: 28px 24px 24px;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
    animation: slideUp 0.25s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.custom-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.custom-modal-body {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.5;
}

.custom-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-modal {
    flex: 1;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-modal:hover { transform: translateY(-1px); }
.btn-modal:active { transform: translateY(0); }

.btn-modal-confirm {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    color: #fff;
    box-shadow: 0 4px 12px rgba(168,85,247,0.3);
}
.btn-modal-cancel {
    background: transparent;
    border: 1px solid #3a4a6b;
    color: #b0c4de;
}
.btn-modal-cancel:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
 
.loan-container, .loan-apply-container, .loan-detail-container { max-width: 680px; margin: 0 auto; padding: 24px 16px; }
.loan-page-title { font-size: 1.4rem; margin-bottom: 20px; color: #fff; }

 
.loan-empty { text-align: center; padding: 60px 20px; color: #6c757d; }
.loan-empty i { font-size: 48px; margin-bottom: 12px; display: block; }

 
.btn-borrow { display: inline-block; padding: 12px 28px; border-radius: 40px; background: linear-gradient(135deg, #a855f7, #3b82f6); color: #fff; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-borrow:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(168,85,247,0.35); }
.btn-repay { padding: 14px 28px; border-radius: 40px; background: linear-gradient(135deg, #28a745, #20c997); color: #fff; font-weight: 600; border: none; cursor: pointer; width: 100%; margin-top: 20px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }

 
.loan-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 769px) { .loan-grid { grid-template-columns: repeat(2, 1fr); } }
.loan-card { display: block; background: #1a1f36; border-radius: 16px; padding: 20px; text-decoration: none; color: #e0e5f0; transition: transform 0.2s; }
.loan-card:hover { transform: translateY(-2px); }
.loan-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.loan-pair { display: flex; align-items: center; gap: 8px; }
.loan-pair img { width: 28px; height: 28px; border-radius: 50%; }
.arrow-icon { color: #6c757d; }
.loan-card-amount { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.loan-card-amount span { color: #8a8f9a; font-size: 0.9rem; font-weight: 400; }
.loan-card-meta { display: flex; gap: 16px; color: #6c757d; font-size: 0.85rem; }

 
.status-0 { color: #ffc107; }
.status-1 { color: #17a2b8; }
.status-2 { color: #28a745; }
.status-3 { color: #dc3545; }

 
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; color: #b0c4de; font-size: 13px; font-weight: 500; }
.label-extra { font-weight: 400; color: #6c757d; margin-left: 8px; }
.coin-select-group { position: relative; }
.coin-select, .input { width: 100%; padding: 12px 16px; background: #2a2a3a; border: 1px solid #3a4a6b; border-radius: 40px; color: #fff; font-size: 15px; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.coin-select:focus, .input:focus { border-color: #a855f7; box-shadow: 0 0 0 2px rgba(168,85,247,0.2); }
.input-with-max { display: flex; align-items: center; gap: 8px; }
.input-with-max .input { flex: 1; }
.max-tag { background: rgba(168,85,247,0.15); color: #a855f7; padding: 6px 12px; border-radius: 20px; font-size: 12px; cursor: pointer; font-weight: 600; }
.field-hint { color: #6c757d; font-size: 12px; margin-top: 4px; }
.error { color: #f87171; font-size: 13px; margin-top: 8px; }

 
.loan-summary { background: #1a1f36; border-radius: 16px; padding: 16px; margin-bottom: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.summary-item { display: flex; flex-direction: column; gap: 2px; }
.summary-item span { color: #6c757d; font-size: 12px; }
.summary-item strong { color: #fff; font-size: 15px; }

 
.detail-card { background: #1a1f36; border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #2a2f46; }
.detail-row:last-child { border-bottom: none; }
.detail-row span { color: #6c757d; font-size: 14px; }
.detail-row strong { color: #e0e5f0; font-size: 14px; }

@media (max-width: 768px) {
    .loan-summary { grid-template-columns: 1fr; }
    .loan-pair img { width: 24px; height: 24px; }
}
.loan-rules-container { max-width: 720px; margin: 0 auto; padding: 24px 16px; }
.rule-card { background: #1a1f36; border-radius: 16px; padding: 20px; margin-bottom: 16px; border: 1px solid #2a2f46; }
.rule-card h3 { color: #a855f7; margin-bottom: 10px; }
.rule-card p { color: #b0c4de; line-height: 1.7; }
.formula { background: #2a2a3a; border-radius: 8px; padding: 12px; margin: 12px 0; }
.formula code { color: #fbbf24; font-size: 15px; }
.example { font-size: 14px; color: #9ca3af; margin-top: 8px; }
@media (max-width: 768px) {
    .loan-apply-container .coin-select-group { flex-direction: column; }
    .loan-apply-container .input-with-max { flex-direction: column; align-items: stretch; }
    .loan-apply-container .max-tag { align-self: flex-end; margin-top: 4px; }
    .loan-summary { grid-template-columns: 1fr; }
    .loan-card-meta { flex-direction: column; gap: 4px; }
    
     
    .loan-detail-container .detail-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .loan-detail-container .detail-row span { margin-bottom: 2px; }
    
     
    .loan-rules-container .rule-card { padding: 16px; }
}
.back-link-rule {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-bottom: 16px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 40px;
    color: #d4c6ff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.back-link-rule:hover {
    background: rgba(168,85,247,0.2);
    box-shadow: 0 0 10px rgba(168,85,247,0.2);
}
.back-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(168,85,247,0.1);
    color: var(--brand-purple);
    font-size: 16px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.back-icon:hover {
    background: rgba(168,85,247,0.2);
    color: #fff;
}
 
.site-footer {
    background: #0b0e17;
    border-top: 1px solid #1e2535;
    padding: 48px 0 0;
    margin-top: 60px;
    color: #8b949e;
    font-size: 14px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e2535;
}
.footer-brand {
    flex: 0 0 260px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.footer-desc {
    margin: 16px 0 20px;
    line-height: 1.7;
    font-size: 13px;
    color: #6c757d;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1f36;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b949e;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #2a2f46;
}
.social-icon:hover {
    background: #a855f7;
    color: #fff;
    border-color: #a855f7;
    transform: translateY(-2px);
}

 
.footer-links {
    flex: 1;
    display: flex;
    gap: 48px;
    min-width: 0;
}
.footer-col {
    flex: 1;
    min-width: 140px;
}
.footer-col-title {
    color: #e0e5f0;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #a855f7;
}

 
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #6c757d;
}

 
.mobile-only { display: none; }
.desktop-only { display: block; }
@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }

    .site-footer { padding: 32px 0 0; }
    .footer-top { flex-direction: column; gap: 24px; padding-bottom: 24px; }
    .footer-brand { flex: 0 0 auto; text-align: center; }
    .footer-social { justify-content: center; }

    .footer-accordion { width: 100%; }
    .accordion-item { border-bottom: 1px solid #1e2535; }
    .accordion-header {
        width: 100%;
        background: transparent;
        border: none;
        color: #e0e5f0;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
    }
    .accordion-arrow {
        font-size: 12px;
        transition: transform 0.3s;
    }
    .accordion-header[aria-expanded="true"] .accordion-arrow {
        transform: rotate(180deg);
    }
    .accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .accordion-body ul {
        list-style: none;
        padding: 0 0 12px 0;
        margin: 0;
    }
    .accordion-body ul li {
        margin-bottom: 8px;
    }
    .accordion-body ul li a {
        color: #8b949e;
        text-decoration: none;
        font-size: 13px;
    }
    .accordion-body ul li a:hover {
        color: #a855f7;
    }
}

@media (min-width: 769px) {
    .desktop-only { display: block; }
    .mobile-only { display: none; }
}
 
.ticket-container, .ticket-form-container, .ticket-detail-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 16px;
}
.ticket-toolbar { margin-bottom: 20px; text-align: right; }
.ticket-list { display: flex; flex-direction: column; gap: 10px; }
.ticket-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #1a1f36;
    border-radius: 12px;
    text-decoration: none;
    color: #e0e5f0;
}
.ticket-status {
    margin-right: 16px;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.status-0 { background: #2a2a3a; color: #ffc107; }
.status-1 { background: #2a2a3a; color: #17a2b8; }
.status-2 { background: #2a2a3a; color: #6c757d; }
.ticket-title { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticket-time { color: #6c757d; font-size: 13px; margin-left: 16px; }
.reply-section {
    margin-top: 20px;
    padding: 16px;
    background: #2a2a3a;
    border-radius: 12px;
}
.reply-section h4 { margin-bottom: 8px; color: #a855f7; }
.reply-content { color: #b0c4de; line-height: 1.6; }
.reply-time { color: #6c757d; font-size: 12px; margin-top: 8px; }
 
.help-container { max-width: 800px; margin: 0 auto; padding: 24px 16px; }
.help-category { margin-bottom: 30px; }
.category-title { color: #a855f7; font-size: 20px; border-bottom: 1px solid #2a2a3a; padding-bottom: 8px; margin-bottom: 12px; }
.help-list { list-style: none; padding: 0; }
.help-list li { margin-bottom: 8px; }
.help-list a { color: #b0c4de; text-decoration: none; font-size: 15px; transition: color 0.2s; }
.help-list a:hover { color: #a855f7; }

.help-detail-container { max-width: 800px; margin: 0 auto; padding: 24px 16px; }
.help-detail-container h2 { color: #fff; margin-bottom: 20px; }
.help-content { background: #1a1f36; border-radius: 16px; padding: 24px; color: #b0c4de; line-height: 1.8; }
.help-content ul, .help-content ol { padding-left: 20px; margin: 10px 0; }
.help-content li { margin-bottom: 6px; }
.back-link { color: #a855f7; text-decoration: none; display: inline-block; margin-bottom: 16px; }
.empty-msg { text-align: center; color: #6c757d; padding: 40px; }

@media (max-width: 768px) {
    .help-content { padding: 16px; }
    .help-detail-container h2 { font-size: 1.2rem; }
}
 
select.input,
select.coin-select,
.loan-apply-container select,
.c2c-publish-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px !important;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

select.input:hover,
select.coin-select:hover {
    border-color: #a855f7;
    background-color: #2e2e3e;
}

select.input:focus,
select.coin-select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
    outline: none;
}

 
select.input option,
select.coin-select option {
    background: #1e1e2a;
    color: #e0e5f0;
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: 1px solid #2a2a3a;
}

select.input option:hover,
select.coin-select option:hover {
    background: #2a2a3a;
}

 
@media (min-width: 769px) {
    select.input,
    select.coin-select {
        font-size: 16px;
        padding: 14px 44px 14px 18px;
    }
}
.btn-appeal {
    padding: 8px 20px;
    border-radius: 40px;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.btn-appeal:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
}