/* ===== Virtual Numbers Page ===== */

.vn-page {
    max-width: 960px;
    margin: 0 auto;
    /* Keep content below fixed header */
    padding: 7rem 1rem 4rem;
}

.vn-page-title {
    text-align: center;
    margin-bottom: 2rem;
}

.vn-page-title h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d2ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.vn-page-title p {
    color: var(--text-secondary, #9ca3af);
    font-size: 0.95rem;
}

.vn-policy-note {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.28);
    background: rgba(0, 210, 255, 0.08);
    color: var(--text-primary, #e0e0e0);
}

.vn-policy-note strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.vn-policy-note ul {
    margin: 0;
    padding-inline-start: 1.2rem;
}

.vn-policy-note li {
    margin: 0.2rem 0;
    color: var(--text-secondary, #b8c0d4);
    font-size: 0.85rem;
    line-height: 1.45;
}

/* ===== Order Form Card ===== */
.vn-form-card {
    background: var(--card-bg, #1a1a2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.vn-mode-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.vn-mode-btn {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.vn-mode-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 210, 255, 0.3);
}

.vn-mode-btn.is-active {
    border-color: rgba(0, 210, 255, 0.42);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.14), rgba(123, 47, 247, 0.14));
    box-shadow: 0 12px 28px rgba(0, 210, 255, 0.1);
}

.vn-mode-panel + .vn-mode-panel {
    margin-top: 0;
}

.vn-flow-step + .vn-flow-step {
    margin-top: 1.5rem;
}

.vn-step-head {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.vn-step-head h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--text-primary, #e0e0e0);
}

.vn-step-head p {
    margin: 0;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.88rem;
    line-height: 1.5;
}

.vn-step-badge {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.22), rgba(0, 210, 255, 0.2));
    border: 1px solid rgba(0, 210, 255, 0.28);
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

.vn-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 0.85rem;
}

.vn-app-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    padding: 0.95rem 0.85rem;
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    text-align: center;
}

.vn-app-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 210, 255, 0.32);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.vn-app-card.is-active {
    border-color: rgba(0, 210, 255, 0.45);
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.12), rgba(123, 47, 247, 0.16));
    box-shadow: 0 12px 28px rgba(0, 210, 255, 0.14);
}

.vn-app-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--vn-accent, #00d2ff);
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.vn-app-icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.vn-app-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
}

.vn-app-subtitle {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.74rem;
}

.vn-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 0.75rem;
}

.vn-country-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: var(--input-bg, #0f0f23);
    padding: 0.9rem;
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    text-align: right;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vn-country-card:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 47, 247, 0.3);
}

.vn-country-card.is-active {
    border-color: rgba(123, 47, 247, 0.42);
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.12), rgba(0, 210, 255, 0.08));
}

.vn-country-label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
}

.vn-country-meta {
    display: block;
    margin-top: 0.22rem;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.73rem;
}

.vn-inline-hint {
    margin-top: 0.8rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary, #b8c0d4);
    font-size: 0.86rem;
    line-height: 1.55;
}

.vn-inline-hint.is-success {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.08);
    color: #a7f3d0;
}

.vn-inline-hint.is-warning {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.08);
    color: #fde68a;
}

.vn-selection-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.vn-selection-item {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.vn-selection-label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.75rem;
}

.vn-selection-item strong {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.94rem;
    line-height: 1.45;
}

.vn-secondary-btn {
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.vn-secondary-btn:hover {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

.vn-advanced-panel {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

#vnManualMode .vn-advanced-panel {
    margin-top: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.vn-form-group {
    margin-bottom: 1.25rem;
}

.vn-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #e0e0e0);
    margin-bottom: 0.5rem;
}

.vn-form-group label i {
    margin-left: 0.4rem;
    opacity: 0.7;
}

.vn-select-wrapper {
    position: relative;
}

.vn-select {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    background: var(--input-bg, #0f0f23);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vn-select:focus {
    outline: none;
    border-color: #7b2ff7;
    box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.15);
}

.vn-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary, #9ca3af);
    pointer-events: none;
    font-size: 0.8rem;
}

/* ===== Price Display ===== */
.vn-price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.08), rgba(0, 210, 255, 0.08));
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.vn-price-label {
    color: var(--text-secondary, #9ca3af);
    font-size: 0.9rem;
}

.vn-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d2ff;
}

.vn-price-value.loading {
    font-size: 0.9rem;
    color: var(--text-secondary, #9ca3af);
}

/* ===== Buy Button ===== */
.vn-buy-btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b2ff7, #00d2ff);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.3);
}

.vn-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 47, 247, 0.4);
}

.vn-buy-btn:active {
    transform: translateY(0);
}

.vn-buy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.vn-buy-error {
    margin-top: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
    font-size: 0.88rem;
    line-height: 1.45;
}

/* ===== Activation Card (after buying) ===== */
.vn-activation-card {
    background: var(--card-bg, #1a1a2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    animation: vnSlideUp 0.4s ease;
}

@keyframes vnSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vn-activation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.vn-activation-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.vn-activation-status.waiting {
    color: #fbbf24;
}

.vn-activation-status.received {
    color: #34d399;
}

.vn-activation-status.cancelled {
    color: #f87171;
}

.vn-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: vnPulse 1.5s infinite;
}

.vn-activation-status.waiting .vn-status-dot {
    background: #fbbf24;
}

.vn-activation-status.received .vn-status-dot {
    background: #34d399;
    animation: none;
}

@keyframes vnPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.vn-timer {
    font-size: 0.85rem;
    color: var(--text-secondary, #9ca3af);
    font-variant-numeric: tabular-nums;
}

/* Phone Number Display */
.vn-phone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--input-bg, #0f0f23);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.vn-phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary, #e0e0e0);
    direction: ltr;
    letter-spacing: 1px;
}

.vn-copy-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(123, 47, 247, 0.15);
    color: #7b2ff7;
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.vn-copy-btn:hover {
    background: rgba(123, 47, 247, 0.25);
}

/* SMS Code Display */
.vn-code-container {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(0, 210, 255, 0.08));
    border: 1px dashed rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.vn-code-label {
    font-size: 0.85rem;
    color: var(--text-secondary, #9ca3af);
    margin-bottom: 0.5rem;
}

.vn-code-digits {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 8px;
    color: #34d399;
    direction: ltr;
    font-variant-numeric: tabular-nums;
}

.vn-waiting-msg {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.9rem;
}

.vn-waiting-msg i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fbbf24;
    animation: vnSpin 2s linear infinite;
}

@keyframes vnSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Progress bar */
.vn-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.vn-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7b2ff7, #00d2ff);
    border-radius: 2px;
    transition: width 1s linear;
}

/* Action Buttons Row */
.vn-actions-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.vn-action-btn {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    background: transparent;
    color: var(--text-primary, #e0e0e0);
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.vn-action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.vn-action-btn.danger {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.2);
}

.vn-action-btn.danger:hover {
    background: rgba(248, 113, 113, 0.08);
}

.vn-action-btn.success {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

.vn-action-btn.success:hover {
    background: rgba(52, 211, 153, 0.08);
}

/* ===== History Section ===== */
.vn-history-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #e0e0e0);
    margin-bottom: 1rem;
}

.vn-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: var(--card-bg, #1a1a2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.vn-history-service {
    font-weight: 600;
    color: var(--text-primary, #e0e0e0);
}

.vn-history-phone {
    direction: ltr;
    color: var(--text-secondary, #9ca3af);
    font-size: 0.8rem;
}

.vn-history-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
}

.vn-history-status.received {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.vn-history-status.cancelled {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.vn-history-status.waiting {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

/* ===== Empty / Error States ===== */
.vn-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary, #9ca3af);
}

.vn-empty i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===== Login Required ===== */
.vn-login-required {
    text-align: center;
    padding: 3rem 1.5rem;
}

.vn-login-required i {
    font-size: 3rem;
    color: #7b2ff7;
    margin-bottom: 1rem;
}

.vn-login-required h3 {
    font-size: 1.2rem;
    color: var(--text-primary, #e0e0e0);
    margin-bottom: 0.5rem;
}

.vn-login-required p {
    color: var(--text-secondary, #9ca3af);
    margin-bottom: 1.5rem;
}

.vn-login-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #7b2ff7, #00d2ff);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    transition: transform 0.15s;
}

.vn-login-btn:hover {
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .vn-page {
        padding: 6.25rem 0.75rem 3rem;
    }

    .vn-mode-switch {
        grid-template-columns: 1fr;
    }

    .vn-step-head {
        gap: 0.7rem;
    }

    .vn-page-title h2 {
        font-size: 1.4rem;
    }

    .vn-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vn-country-grid,
    .vn-selection-summary {
        grid-template-columns: 1fr;
    }

    .vn-app-card,
    .vn-country-card,
    .vn-selection-item,
    .vn-advanced-panel {
        border-radius: 14px;
    }

    .vn-code-digits {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .vn-phone-number {
        font-size: 1.1rem;
    }

    .vn-actions-row {
        flex-direction: column;
    }
}

/* --- Quality hint (success rate per country × service) --------------- */
.vn-quality-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.65rem 0;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(0, 180, 255, 0.06);
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.vn-quality-hint.hidden { display: none; }

.vn-quality-hint .vn-quality-icon {
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.vn-quality-hint.is-good {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
    color: #cfeed7;
}
.vn-quality-hint.is-good .vn-quality-icon { color: #6ee59f; }

.vn-quality-hint.is-mid {
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.08);
    color: #f3e0bf;
}
.vn-quality-hint.is-mid .vn-quality-icon { color: #f5be4f; }

.vn-quality-hint.is-bad {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.08);
    color: #ffd0d8;
}
.vn-quality-hint.is-bad .vn-quality-icon { color: #ff8b8b; }

.vn-quality-hint .vn-quality-rate {
    font-weight: 800;
}

/* --- Swap (alternate-number) button -------------------------------- */
.vn-action-btn.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.18));
    border: 1px solid rgba(245, 158, 11, 0.55);
    color: #f5be4f;
}
.vn-action-btn.warning:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(217, 119, 6, 0.28));
    color: #fff;
}
.vn-action-btn.warning:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ============================================================
   🎨 Visual polish — اتساق مع نمط orders/wallet الجديد
   Appended 20260601 — conservative overrides (no structural changes)
   ============================================================ */

body.app-shell {
    background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.06), transparent 40%),
        radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.05), transparent 50%),
        #030816;
}

.vn-hero {
    border: 1px solid rgba(0, 180, 255, 0.16) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top left, rgba(0, 180, 255, 0.16), transparent 34%),
        linear-gradient(140deg, rgba(6, 14, 32, 0.96), rgba(4, 8, 20, 0.98)) !important;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34) !important;
    padding: 2rem !important;
    margin-bottom: 1.25rem !important;
    position: relative;
}

.vn-hero h2 {
    font-size: clamp(1.65rem, 4vw, 2.4rem) !important;
    margin: 0 0 0.6rem !important;
    line-height: 1.15;
}

.vn-hero h2 i {
    color: #5ed3ff;
    margin-inline-end: 0.4rem;
}

.vn-hero p {
    color: var(--text-secondary) !important;
    line-height: 1.85;
    margin: 0 !important;
    max-width: 720px;
}

.vn-policy-note {
    border: 1px solid rgba(245, 158, 11, 0.28) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 50%),
        rgba(6, 12, 24, 0.6) !important;
    padding: 1.1rem 1.3rem !important;
}

.vn-policy-note strong {
    color: #f5be4f;
}

.vn-policy-note ul {
    margin: 0.6rem 0 0;
    padding-inline-start: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.vn-form-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 22px !important;
    background: linear-gradient(150deg, rgba(8, 16, 36, 0.96), rgba(4, 8, 20, 0.94)) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
}

.vn-app-card,
.vn-country-card {
    border-radius: 16px;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vn-app-card:hover,
.vn-country-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 180, 255, 0.42) !important;
    box-shadow: 0 12px 28px rgba(0, 180, 255, 0.18);
}

.vn-app-card.is-active,
.vn-country-card.is-active {
    border-color: rgba(0, 200, 200, 0.6) !important;
    background: linear-gradient(135deg, rgba(0, 200, 200, 0.18), rgba(0, 120, 200, 0.14)) !important;
    box-shadow: 0 0 0 1px rgba(0, 200, 200, 0.25) inset, 0 12px 30px rgba(0, 200, 200, 0.18);
}

.vn-mode-btn {
    border-radius: 999px !important;
    transition: 0.18s ease;
}

.vn-mode-btn.is-active {
    background: linear-gradient(135deg, rgba(0, 200, 200, 0.22), rgba(0, 120, 200, 0.18)) !important;
    border-color: rgba(0, 200, 200, 0.55) !important;
    color: #fff !important;
}

.vn-step-badge {
    background: linear-gradient(135deg, #00b4ff, #5ed3ff) !important;
    color: #051022 !important;
    font-weight: 900 !important;
    box-shadow: 0 6px 18px rgba(0, 180, 255, 0.25);
}

.vn-price-display {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(16, 130, 60, 0.1)) !important;
    border-color: rgba(34, 197, 94, 0.32) !important;
    border-radius: 16px !important;
}

.vn-price-value {
    color: #6ee59f !important;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.vn-buy-btn {
    background: linear-gradient(135deg, #00b4ff, #0090d0) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0, 180, 255, 0.3) !important;
    transition: 0.18s ease;
}

.vn-buy-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 180, 255, 0.4) !important;
}

.vn-buy-btn:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed;
}

/* Activation card polish */

.vn-activation-card {
    border: 1px solid rgba(0, 180, 255, 0.32) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.14), transparent 50%),
        linear-gradient(150deg, rgba(8, 16, 36, 0.96), rgba(4, 8, 20, 0.94)) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34) !important;
}

.vn-phone-row {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(0, 180, 255, 0.32);
}

.vn-phone-number {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.vn-timer {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.15)) !important;
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #f5be4f !important;
    font-weight: 900 !important;
}

.vn-code-container {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(16, 130, 60, 0.1)) !important;
    border: 1px solid rgba(34, 197, 94, 0.45) !important;
    border-radius: 18px;
}

.vn-code-digits {
    color: #6ee59f !important;
    text-shadow: 0 0 24px rgba(110, 229, 159, 0.35);
}

.vn-progress-fill {
    background: linear-gradient(90deg, #00b4ff, #5ed3ff) !important;
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.35);
}

.vn-action-btn {
    border-radius: 12px;
    transition: 0.18s ease;
    font-weight: 800;
}

.vn-action-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.vn-history-title {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.65rem;
}
