/* =========================================
   SECTION WRAPPER
========================================= */

.aicp-banner-section {

    width: 100%;

    padding: 40px 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

/* =========================================
   MAIN CONTAINER
========================================= */

.aicp-banner-container {

    position: relative;

    width: 100%;
    max-width: 1800px;

    padding: 48px 70px 60px;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(42, 20, 10, 0.97),
            rgba(26, 12, 6, 0.98));

    border: 3px solid rgba(226, 186, 120, 0.72);

    box-shadow:

        0 18px 40px rgba(0, 0, 0, 0.34),

        0 0 18px rgba(226, 186, 120, 0.35),

        inset 0 0 60px rgba(255, 190, 120, 0.06);
}

/* =========================================
   PREMIUM BORDER GLOW
========================================= */

.aicp-banner-container::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 24px;

    padding: 2px;

    background:
        linear-gradient(90deg,
            rgba(255, 220, 160, 0.9),
            rgba(255, 190, 110, 0.25),
            rgba(255, 220, 160, 0.9));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

/* =========================================
   TOP STREAK
========================================= */

.aicp-top-streak {

    position: absolute;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: 720px;
    height: 22px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 240, 200, 0.45),
            transparent);

    filter: blur(4px);
}

/* =========================================
   SIDE LIGHTS
========================================= */

.aicp-left-glow,
.aicp-right-glow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 5px;
    height: 78%;

    border-radius: 999px;

    background: #f0c17a;

    box-shadow:
        0 0 14px #f0c17a,
        0 0 30px rgba(240, 193, 122, 0.75);
}

.aicp-left-glow {
    left: 0;
}

.aicp-right-glow {
    right: 0;
}

/* =========================================
   BADGE
========================================= */

.aicp-badge {

    width: max-content;

    margin: 0 auto 26px;

    padding: 8px 24px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04));

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 15px;

    font-weight: 500;

    backdrop-filter: blur(10px);

    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.06);
}

/* =========================================
   HEADING
========================================= */

.aicp-headline {

    max-width: 1350px;

    margin: 0 auto;

    text-align: center;

    font-size: 28px;

    line-height: 1;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: 1px;

    text-shadow:
        0 5px 18px rgba(0, 0, 0, 0.4);
}

.aicp-highlight {

    color: #d89a43;
}

/* =========================================
   SUBTEXT
========================================= */

.aicp-subtext {

    max-width: 1200px;

    margin: 10px auto 25px;

    text-align: center;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    font-weight: 400;
}

/* =========================================
   BUTTON
========================================= */

.aicp-cta-button {

    display: block;

    margin: -18px auto;

    border: none;

    cursor: pointer;

    padding: 10px 40px;

    border-radius: 18px;

    font-size: 16px;

    font-weight: 700;

    color: #2a160a;

    background:
        linear-gradient(135deg,
            #c79b57,
            #f0c17a,
            #a87333);

    box-shadow:

        0 10px 22px rgba(0, 0, 0, 0.35),

        inset 0 2px 10px rgba(255, 255, 255, 0.25),

        0 0 18px rgba(240, 193, 122, 0.45);

    transition: 0.3s ease;
}

.aicp-cta-button:hover {

    transform: translateY(-3px);

    box-shadow:

        0 14px 28px rgba(0, 0, 0, 0.42),

        0 0 28px rgba(240, 193, 122, 0.55);
}

/* =========================================
   CORNER DESIGN
========================================= */

.aicp-corner-design {

    position: absolute;

    right: 0;
    bottom: 0;

    width: 120px;
    height: 120px;

    background:
        linear-gradient(135deg,
            #e2ba78,
            #b9843f);

    border-top-left-radius: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.18);
}

.aicp-corner-design span {

    font-size: 40px;

    color: #1c130d;

    font-weight: 700;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .aicp-headline {
        font-size: 44px;
    }

    .aicp-subtext {
        font-size: 19px;
    }
}

@media(max-width:768px) {

    .aicp-banner-section {
        padding: 30px 16px;
    }

    .aicp-banner-container {
        padding: 38px 22px 46px;
    }

    .aicp-headline {
        font-size: 30px;
    }

    .aicp-subtext {
        font-size: 16px;
    }

    .aicp-cta-button {
        width: 100%;
        font-size: 18px;
        padding: 16px;
    }

    .aicp-corner-design {
        width: 85px;
        height: 85px;
    }

    .aicp-corner-design span {
        font-size: 26px;
    }
}

.aicp-btn-link{
    text-decoration:none;
}


/* =========================================
   PREDICT BUTTON LOADING STATE
========================================= */

.predict-btn:disabled {

    opacity: 0.85;

    cursor: not-allowed;

    transform: none;
}

/* =========================================
   BUTTON LOADER SPINNER
========================================= */

.btn-loader {

    width: 18px;
    height: 18px;

    border: 2px solid rgba(255,255,255,0.35);

    border-top: 2px solid #ffffff;

    border-radius: 50%;

    display: inline-block;

    animation: btnSpin 0.8s linear infinite;

    margin-right: 10px;

    vertical-align: middle;
}

/* =========================================
   LOADER ANIMATION
========================================= */

@keyframes btnSpin {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}



/* =========================================
   ANALYSIS BOX TEXT FIX
========================================= */

.analysis-box {

    width: 100%;

    overflow: hidden;

    word-wrap: break-word;

    overflow-wrap: break-word;

    white-space: normal;

    line-height: 1.7;
}

/* =========================================
   ANALYSIS PARAGRAPH FIX
========================================= */

.analysis-box p {

    margin-top: 10px;

    color: rgba(255,255,255,0.85);

    font-size: 15px;

    line-height: 1.8;

    word-break: break-word;

    overflow-wrap: anywhere;

    white-space: normal;
}