/* =========================================
   ADDIKO POPUP OVERLAY
========================================= */

#addiko-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* =========================================
   ADDIKO POPUP BOX
========================================= */

#addiko-popup-box {
    background: #ffffff;
    max-width: 520px;
    width: 90%;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border-top: 6px solid rgba(255, 77, 90, 1.00);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
}

/* =========================================
   TYPOGRAPHY SYSTEM (H1–H5)
========================================= */

#addiko-popup-box h1 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

#addiko-popup-box h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 14px;
}

#addiko-popup-box h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
}

#addiko-popup-box h4 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
}

#addiko-popup-box h5 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

#addiko-popup-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}

#addiko-popup-box strong {
    font-weight: 600;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

#addiko-popup-close {
    background: rgba(255, 77, 90, 1.00);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    margin-top: 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

#addiko-popup-close:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

#addiko-popup-close:active {
    transform: translateY(0);
}


/* =========================================
   DISMISS LINK
========================================= */

#addiko-popup-hide {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 77, 90, 1.00);
    text-decoration: none;
    cursor: pointer;
}

#addiko-popup-hide:hover {
    text-decoration: underline;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes addikoFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
