/* ================================
   CNCBUL – Guess the Machine UI
   Corporate / Professional
================================ */

/* ---- Main Card ---- */
.cncbul-guess-game {
    max-width: 820px;
    margin: 50px auto;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e3e6ea;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}


/* ================================
   IMAGE CARD – ROUNDED (FIX)
================================ */

.cncbul-image-wrapper {
    margin-bottom: 26px;
    border-radius: 18px;          /* dış kart radius */
    overflow: hidden;             /* KRİTİK */
    background: #f8f9fb;
    border: 1px solid #e3e6ea;
    box-shadow: inset 0 0 0 1px #eef1f5;
}

.cncbul-image-wrapper img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    display: block;
    border-radius: 18px;          /* iç görsel radius */
    background: #f8f9fb;
}


/* ---- Question ---- */
.cncbul-guess-game h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 18px 0 24px;
    color: #2c2c2c;
}

/* ---- Options ---- */
.cncbul-options {
    margin: 22px 0;
}

.cncbul-answer {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 500;
    background: #f6f7f9;
    border: 1px solid #d8dce2;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cncbul-answer:hover {
    background: #eef2f7;
    border-color: #b9c3d1;
}

/* ---- Result ---- */
.cncbul-result {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* ---- Score ---- */
.cncbul-score {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

/* ---- CTA ---- */
.cncbul-cta {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px dashed #d8d8d8;
}

.cncbul-cta-link {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8a00, #ff6a00);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(255,122,0,0.35);
    transition: all 0.25s ease;
}

.cncbul-cta-link span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.cncbul-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255,122,0,0.45);
}
