:root {
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --gold-primary: #d4af37;
    --gold-secondary: #f1d592;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f1d592 100%);
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
}

.container { max-width: 1100px; }

.box-sv {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, border 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.box-sv:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.main-header {
    margin-bottom: 40px;
    border-left: 5px solid var(--gold-primary);
    padding-left: 20px;
}

.main-header span {
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-transform: uppercase;
}

.custom-breadcrumb {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-breadcrumb a { color: var(--gold-primary); text-decoration: none; }
.custom-breadcrumb .active { color: #fff; }

.box-text-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-text-header small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.line-box {
    height: 2px;
    background: var(--gold-gradient);
    width: 50px;
    margin-bottom: 20px;
}

.list-haeder {
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.list-text {
    list-style: none;
    padding: 5px 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.list-text img { width: 20px; height: 20px; margin-right: 10px; object-fit: contain; }
.font-org { color: var(--gold-secondary); font-weight: 600; margin-left: auto; }

.table {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.2);
}

.table thead th {
    background-color: var(--gold-primary);
    color: #000;
    border: none;
}

.table-bordered td {
    background: rgba(255,255,255,0.02);
    border-color: rgba(212, 175, 55, 0.1);
}

.text-center { text-align: center; }

.list-text img[src*="skill"],
.list-text img[src*="item"] {
    filter: drop-shadow(0 0 5px var(--gold-primary));
}

.custom-server-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(to right, #f39c12, #d35400);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.custom-server-btn:hover {
    background: linear-gradient(to right, #ffb133, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.2);
}
