/* merchant/style.css */

:root {
    --gold: #d4af37;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --human: #00b4d8;
    --akkan: #e63946;
    --bg-dark: #0f0f12;
    --glass: rgba(30, 30, 35, 0.9);
}

body {
    background-color: var(--bg-dark);
    font-family: 'Kanit', sans-serif;
    color: #e0e0e0;
}

/* Card Design */
.merchant-card {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.merchant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Faction Borders */
.border-human { border-left: 4px solid var(--human) !important; }
.border-akkan { border-left: 4px solid var(--akkan) !important; }

.text-human { color: var(--human) !important; }
.text-akkan { color: var(--akkan) !important; }

/* Tier Badges */
.badge-tier {
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.tier-gold {
    background: linear-gradient(45deg, #ffd700, #b8860b);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tier-silver {
    background: linear-gradient(45deg, #e0e0e0, #a0a0a0);
    color: #000;
}

.tier-general {
    background: #333;
    color: #aaa;
    border: 1px solid #555;
}

/* Profile Image */
.merchant-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #444;
}

.human-glow { box-shadow: 0 0 15px rgba(0, 180, 216, 0.4); border-color: var(--human); }
.akkan-glow { box-shadow: 0 0 15px rgba(230, 57, 70, 0.4); border-color: var(--akkan); }

/* Rules Page */
.rules-box {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--gold);
    padding: 30px;
    border-radius: 10px;
}
.rule-item {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}
.rule-icon {
    min-width: 30px;
    color: var(--gold);
    margin-top: 5px;
}