.bcs-wrap {
    width: 100%;
    font-family: inherit;
}

.bcs-card {
    background:
        radial-gradient(circle at top right, rgba(255, 214, 10, 0.05), transparent 25%),
        linear-gradient(180deg, #08090c 0%, #040507 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.bcs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.bcs-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.bcs-icon {
    color: #ffd60a;
    font-size: 30px;
    line-height: 1;
}

.bcs-field {
    margin-bottom: 24px;
}

.bcs-label {
    display: block;
    margin-bottom: 10px;
    color: #c6cad2;
    font-size: 18px;
    font-weight: 600;
}

.bcs-input {
    width: 100%;
    height: 82px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    padding: 0 22px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    box-sizing: border-box;
}

.bcs-input:focus {
    border-color: rgba(0, 245, 196, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 245, 196, 0.08);
    transform: translateY(-1px);
}

.bcs-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 20px 0 18px;
}

.bcs-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bcs-result-box {
    min-height: 130px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bcs-result-label {
    color: #c8ccd4;
    font-size: 20px;
    margin-bottom: 10px;
}

.bcs-result-value {
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bcs-probability {
    color: #ffd60a;
}

.bcs-profit {
    color: #00f5c4;
}

.bcs-profit small {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .bcs-card {
        padding: 20px;
        border-radius: 18px;
    }

    .bcs-title {
        font-size: 28px;
    }

    .bcs-label {
        font-size: 15px;
    }

    .bcs-input {
        height: 64px;
        font-size: 24px;
        border-radius: 14px;
    }

    .bcs-results {
        grid-template-columns: 1fr;
    }

    .bcs-result-box {
        min-height: 100px;
    }

    .bcs-result-value {
        font-size: 30px;
    }
}
