:root {
    --scbc-accent-color: #4D6B75;
    --scbc-progress-color: #45A1F6;
    --scbc-background-color: #FFFFFF;
    --scbc-text-color: #000000;
    --scbc-subtext-color: #888888;
    --scbc-border-color: #EAEAEA;
}

.scbc-figma-progress-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    padding: 32px;
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.scbc-figma-progress-card .scbc-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
}

.scbc-figma-progress-card .scbc-raised-val {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
}

.scbc-figma-progress-card .scbc-goal-sub {
    font-size: 14px;
    color: #888888;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 20px;
}

/* Blue Progress Bar matching Figma */
.scbc-blue-progress-bar {
    width: 100%;
    height: 10px;
    background: #EEEEEE;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.scbc-blue-progress-fill {
    height: 100%;
    background: #45A1F6;
    border-radius: 10px;
    transition: width 0.4s ease;
    min-width: 4px;
}

/* Stats Row */
.scbc-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scbc-stat-box {
    display: flex;
    flex-direction: column;
}

.scbc-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
}

.scbc-stat-lbl {
    font-size: 13px;
    color: #888888;
    font-weight: 600;
    margin-top: 2px;
}

.scbc-card-divider {
    height: 1px;
    background: #EEEEEE;
    margin: 20px 0;
}

/* Countdown Section */
.scbc-countdown-section {
    margin-bottom: 24px;
}

.scbc-countdown-label {
    display: block;
    font-size: 13px;
    color: #888888;
    font-weight: 600;
    margin-bottom: 12px;
}

.scbc-countdown-boxes {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.scbc-cbox {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 12px 4px;
    text-align: center;
}

.scbc-cnum {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
}

.scbc-clbl {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #888888;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Buttons */
.scbc-main-pkg-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #4D6B75;
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

.scbc-main-pkg-btn:hover {
    background: #3D5760;
    color: #FFFFFF;
}

.scbc-sec-btns-row {
    display: flex;
    gap: 12px;
}

.scbc-sec-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    color: #000000;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.scbc-sec-btn:hover {
    background: #F9FAFB;
    color: #000000;
}
