/* =========================================================
   ALGOPLUS ACTIVATION SYSTEM
   Uses the existing AlgoPlus light orange/violet theme.
   ========================================================= */

.activation-banner {
    background: #fff6e8;
    border: 1px solid #efd19a;
    color: #8a5200;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.activation-banner strong {
    color: #7a4500;
}

.account-disabled {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff0f1;
    border: 1px solid #f0c7cc;
    color: #b42336;
    font-size: 12px;
    font-weight: 700;
}

.account-active {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e8f7f1;
    border: 1px solid #c8e9db;
    color: #147a59;
    font-size: 12px;
    font-weight: 700;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.subscription-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3e9f2;
    border-radius: 13px;
    padding: 22px;
    box-shadow: 0 8px 28px rgba(27,49,80,.06);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.subscription-card:hover {
    transform: translateY(-4px);
    border-color: #d6b39c;
    box-shadow: 0 16px 38px rgba(27,49,80,.10);
}

.subscription-card.featured {
    border: 2px solid #c56b2b;
    box-shadow: 0 14px 38px rgba(197,107,43,.12);
}

.subscription-badge {
    position: absolute;
    top: -11px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg,#c56b2b,#a75326);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}

.subscription-name {
    color: #7b4f9e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.subscription-card.featured .subscription-name {
    color: #c56b2b;
}

.subscription-card h2 {
    margin: 9px 0 4px;
    color: #162033;
}

.subscription-description {
    color: #718096;
    line-height: 1.6;
    min-height: 76px;
}

.subscription-price {
    font-size: 27px;
    font-weight: 800;
    color: #162033;
    margin: 17px 0;
}

.subscription-price small {
    font-size: 11px;
    color: #718096;
    font-weight: 400;
}

.subscription-features {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.subscription-features li {
    margin: 9px 0;
    color: #4b5565;
}

.subscription-features li::before {
    content: "✓";
    color: #17956a;
    font-weight: 800;
    margin-right: 8px;
}

.crypto-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.crypto-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 8px 12px;
    background: #fff;
    color: #344054;
    border: 1px solid #e3e9f2;
    border-radius: 8px;
    cursor: pointer;
    transition:
        border-color .18s ease,
        background .18s ease,
        transform .18s ease;
}

.crypto-method:hover {
    transform: translateY(-1px);
    border-color: #d6b39c;
    background: #fffaf7;
}

.crypto-method.selected {
    border-color: #c56b2b;
    background: #fff6ef;
    color: #9a4c20;
}

.crypto-method img {
    width: 24px;
    height: 24px;
}

.wallet-panel {
    background: #fbfcfe;
    border: 1px solid #e3e9f2;
    border-radius: 11px;
    padding: 18px;
}

.wallet-address {
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    line-height: 1.5;
    word-break: break-all;
}

.payment-warning {
    background: #fff6e8;
    border: 1px solid #efd19a;
    color: #8a5200;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.6;
}

.payment-success {
    background: #e8f7f1;
    border: 1px solid #c8e9db;
    color: #147a59;
    border-radius: 10px;
    padding: 18px;
}

.payment-pending {
    background: #fff8ef;
    border: 1px solid #efd4b7;
    color: #8a5200;
    border-radius: 10px;
    padding: 18px;
}

.feature-lock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    padding: 14px 16px;
    color: #667085;
}

.feature-lock strong {
    color: #162033;
}

@media (max-width: 1000px) {
    .subscription-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .subscription-grid,
    .crypto-methods {
        grid-template-columns: 1fr;
    }

    .subscription-description {
        min-height: 0;
    }

    .subscription-card {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .subscription-card,
    .crypto-method {
        transition: none;
    }
}
