:root {
    --color-bg: #362285;
    --color-primary: #4E30B3;
    --color-secondary: #FF7707;
    --color-white: #FFFFFF;
    --color-white2: #E7E7E7;
    --color-text: #FFFFFF;
    --bg-block-primary: #4E30B3;

    --font-title: 'Clash Grotesk Display', sans-serif;
    --font-text: 'Satoshi', sans-serif;

    --transition: all 0.3s ease;

    --container-1280: 1280px;
    --container-1300: 1300px;
}

.ia-required {
    color: #FF4444;
    font-weight: 700;
}

.membership-checkout-wrapper, .profile-wrapper {
    background: none !important;
    font-family: var(--font-title) !important;
}

.membership-checkout-wrapper h1, .profile-wrapper h1 {

    font-family: var(--font-title) !important;
}

.checkout-card {
    background: none   !important;
    backdrop-filter: none   !important;
}

.profile-container {
    background: var(--bg-block-primary) !important;
    /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
    box-shadow: none !important;
}

/* ── Error Modal (global) ── */
.ia-error-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.ia-error-modal.active {
    display: flex;
}
.ia-error-modal-content {
    background: rgba(78, 48, 179, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: iaErrorSlideIn 0.3s ease-out;
}
@keyframes iaErrorSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
.ia-error-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 82, 82, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ia-error-modal-icon svg {
    width: 40px;
    height: 40px;
}
.ia-error-modal-title {
    font-family: 'Clash Grotesk Display', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.ia-error-modal-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}
.ia-error-modal-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: #FF7707;
    color: #FFFFFF;
    transition: all 0.3s ease;
}
.ia-error-modal-btn:hover {
    background: #e56a00;
}
@media (max-width: 600px) {
    .ia-error-modal-content { padding: 35px 25px; border-radius: 20px; }
    .ia-error-modal-title { font-size: 22px; }
    .ia-error-modal-text { font-size: 14px; }
}