@font-face {
    font-family: 'Shabnam';
    src: url('../fonts/Shabnam.woff') format('woff');
    font-weight: normal;
}
@font-face {
    font-family: 'Shabnam';
    src: url('../fonts/Shabnam-Bold.woff') format('woff');
    font-weight: bold;
}
@font-face {
    font-family: 'Doran';
    src: url('../fonts/Doran-Bold.woff2') format('woff2');
    font-weight: bold;
}
body {
    font-family: 'Shabnam', Tahoma, sans-serif;
    color: #fff;
}
.main-title, .path-title {
    font-family: 'Doran', 'Shabnam', sans-serif;
    font-weight: bold;
}
.path-title {
    border-right: 5px solid #f5c842;
    padding-right: 15px;
    margin: 30px 0 10px;
    color: #f0e6d3;
}
.node-name {
    font-family: 'Shabnam', Tahoma, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin: 5px 0 3px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}
/* سایر استایل‌ها همانند قبل */
.main-bg {
    min-height: 100vh;
    padding: 30px 0;
}
.sub-title {
    text-align: center;
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.path-desc {
    color: #bbb;
    padding-right: 20px;
    margin-bottom: 20px;
}
.skill-level {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.skill-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.node-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px 15px 15px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    position: relative;
}
.node-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    border-color: var(--glow, #ffcc00);
}
.node-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 8px;
    border: 3px solid var(--glow, #ffcc00);
    box-shadow: 0 0 20px var(--glow, #ffcc00);
    transition: 0.3s;
}
.node-card:hover .node-icon {
    box-shadow: 0 0 40px var(--glow, #ffcc00), 0 0 80px var(--glow, #ffcc00);
}
.node-step {
    background: #222;
    color: #f5c842;
    border-radius: 30px;
    padding: 0 12px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}
.node-desc {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}
.connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #555, transparent);
    margin: 5px 0;
}
.free-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #28a745;
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(40,167,69,0.5);
}
.admin-panel .card {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border: 1px solid #444;
    color: #fff;
}
.admin-panel .card-header {
    background: rgba(245,200,66,0.2);
    border-bottom: 1px solid #555;
}
.list-group-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: #ddd;
}
@media (max-width: 768px) {
    .node-card { width: 140px; padding: 15px 10px; }
    .node-icon { width: 55px; height: 55px; }
    .skill-level { gap: 15px; }
}