/* Background of the full page */
body {
    background: url('/img/bear_bull.png') no-repeat center center fixed;
    background-size: cover;
    background-blend-mode: lighten;
    background-color: #f8f9fa;
    background-color: rgba(233, 229, 229, 0.954);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    /* ✨ no opacity here! */
}

/* Content box */
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 3rem auto;
}

/* Headings */
h2, h3 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Profit box (keep this from before) */
.screenshot-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.profit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.profit-box {
    background: #fafafa;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    width: 320px;
}

.profit-box h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.profit-box .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d7d2d;
    margin-bottom: 10px;
}

.profit-box .percentage {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.strategies .form-check-label {
    font-size: 0.9rem;
}
.strategies input[type="number"] {
    max-width: 100%;
}
