.portal-selection-card {
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 14px;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.02);
        }

        .portal-selection-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .portal-selection-option {
            display: grid;
            grid-template-columns: minmax(0,1fr) auto auto;
            gap: 1rem;
            align-items: center;
            padding: 0.9rem;
            margin-top: 0.65rem;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 10px;
        }

        .portal-selection-option.selected {
            border-color: var(--gold);
            background: rgba(197,160,89,0.08);
        }

        .portal-selection-price {
            font-weight: 700;
            white-space: nowrap;
        }

        .portal-selection-code {
            color: #94a3b8;
            font-size: 0.75rem;
            margin-top: 0.2rem;
        }

        .portal-selection-chosen {
            color: #d8b06c;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 0.25rem;
        }

        .portal-selection-request {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.10);
        }

        .portal-selection-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .portal-selection-grid .full {
            grid-column: 1 / -1;
        }

        .portal-selection-input {
            width: 100%;
            padding: 0.7rem 0.8rem;
            background: rgba(0,0,0,0.20);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            color: #fff;
        }

        .portal-selection-input::placeholder {
            color: #64748b;
        }

        .portal-selection-label {
            display: block;
            color: #cbd5e1;
            font-size: 0.75rem;
            margin-bottom: 0.3rem;
        }

        .portal-selection-cost {
            margin-top: 1rem;
            padding: 0.9rem;
            border: 1px solid rgba(197,160,89,0.25);
            border-radius: 10px;
            background: rgba(197,160,89,0.06);
        }

        .portal-selection-submitted {
            margin-top: 1rem;
            padding: 0.9rem;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 10px;
            background: rgba(255,255,255,0.025);
        }

        .portal-selection-link {
            color: #d8b06c;
            text-decoration: underline;
            overflow-wrap: anywhere;
        }

        .portal-selection-section-title {
            margin-top: 1rem;
            margin-bottom: 0.35rem;
            font-size: 0.8rem;
            font-weight: 700;
            color: #cbd5e1;
        }
        @media (max-width: 700px) {
            .portal-selection-head {
                flex-direction: column;
            }

            .portal-selection-option {
                grid-template-columns: 1fr;
            }
        }
