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

:root {
    /* 强调色 - 白色系（用于按钮、hover、高亮） */
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --primary-light: #f5f5f5;
    
    /* 主题背景色 - 黑色系 */
    --theme-black: #000000;
    --theme-black-light: #1a1a1a;
    --theme-black-lighter: #333333;
    
    /* 背景色 */
    --bg-dark: #000;
    --bg-header: #1f1f1f;
    --bg-section: #121212;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --bg-light: #f5f5f5;

    /* 文字色 */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #aaa;
    --text-muted: #666;
    --text-dark: #333;

    /* 按钮 - 白底黑字 */
    --btn-bg: #ffffff;
    --btn-bg-hover: #e0e0e0;
    --btn-text: #000000;
    --btn-text-hover: #000000;

    /* 阴影 */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 15px rgba(0, 0, 0, 0.1);

    /* 圆角 */
    --radius: 10px;

    /* 过渡 */
    --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(--bg-dark);
    color: var(--text-light);
    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(--bg-dark) 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

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

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

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