/* Container */
.skill-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: sans-serif;
}

/* Card */
.skill-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    color: white;
}

.skill-card:hover {
    transform: scale(1.05);
    transition: 0.6s;
}

/* title + Percent */
.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Bar */
.skill-bar {
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
}

/* fill */
.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a143, #eccc80);
    transition: width 0.6s ease;
}
