/**
 * 核币入口样式（独立，仅使用 core-coin-entry- 前缀）
 */

.core-coin-entry-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
    line-height: 1;
}

.core-coin-entry-box:hover {
    background: var(--bg-hover);
    border-color: var(--border-secondary);
    box-shadow: var(--shadow-md);
}

.core-coin-entry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 100%;
    padding: 0 4px;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    font-size: 12px;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.core-coin-entry-btn:hover {
    color: var(--text-primary);
}

.core-coin-entry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.core-coin-entry-icon svg {
    width: 18px;
    height: 18px;
}

.core-coin-entry-btn:hover .core-coin-entry-icon {
    color: var(--text-primary);
}

.core-coin-entry-amount {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 1.2em;
    text-align: right;
}

.core-coin-entry-unit {
    font-size: 11px;
    color: var(--text-secondary);
}
