/**
 * Theme Name:        Binance Two
 * Theme URI:         https://host.two-wp.com
 * Description:       Custom theme description...
 * Version:           1.0.0
 * Author:            xhr
 * Author URI:        https://a-bianance.com/
 * Tags:              Binance, 加密货币，区块链
 * Requires PHP:      8.0
 */

:root {
    --primary-yellow: #00b6ff;
    --dark-yellow: #0088cc;
    --light-yellow: #e6f7ff;
    --accent-yellow: #66d1ff;
    --dark-bg: #000;
    --header-bg: #1f1f1f;
    --light-bg: #1f1f1f;
    --gray-bg: #2a2a2a;
    --card-bg: #2a2a2a;
    --text-dark: #e0e0e0;
    --text-light: #ffffff;
    --text-gray: #aaa;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


.mat15 {
    margin-top: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}


/* 主容器 */
.sidebar {
    width: 100%;
    background: linear-gradient(145deg, var(--dark-bg) 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

/* 头部区域 */
.sidebar .sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #252525 0%, var(--dark-bg) 100%);
    border-bottom: 1px solid #333;
}

.sidebar .sidebar-header-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.sidebar .sidebar-header-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.5px;
}