/* VIP Invite - Feature Selection */
.vip-invite-page .features-search {
    margin-bottom: 1rem;
}

.vip-invite-page .selected-features {
    margin-bottom: 1rem;
}

.vip-invite-page .selected-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.vip-invite-page .selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vip-invite-page .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.vip-invite-page .feature-tag button {
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-invite-page .feature-tag button:hover {
    background: rgba(255,255,255,0.5);
}

.vip-invite-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.vip-invite-page .feature-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.vip-invite-page .feature-checkbox:hover:not(.disabled) {
    border-color: #6366f1;
}

.vip-invite-page .feature-checkbox.selected {
    border-color: #6366f1;
    background: #eef2ff;
}

.vip-invite-page .feature-checkbox.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vip-invite-page .feature-checkbox input {
    display: none;
}

.vip-invite-page .feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-invite-page .feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.vip-invite-page .feature-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vip-invite-page .feature-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vip-invite-page .feature-category {
    font-size: 0.75rem;
    color: #64748b;
}

/* Dark theme for features */
.theme-space .vip-invite-page .features-grid,
.theme-winter .vip-invite-page .features-grid,
.theme-nature .vip-invite-page .features-grid,
.theme-ocean .vip-invite-page .features-grid {
    background: rgba(255,255,255,0.05);
}

.theme-space .vip-invite-page .feature-checkbox,
.theme-winter .vip-invite-page .feature-checkbox,
.theme-nature .vip-invite-page .feature-checkbox,
.theme-ocean .vip-invite-page .feature-checkbox {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.theme-space .vip-invite-page .feature-checkbox.selected,
.theme-winter .vip-invite-page .feature-checkbox.selected,
.theme-nature .vip-invite-page .feature-checkbox.selected,
.theme-ocean .vip-invite-page .feature-checkbox.selected {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.theme-space .vip-invite-page .feature-name,
.theme-winter .vip-invite-page .feature-name,
.theme-nature .vip-invite-page .feature-name,
.theme-ocean .vip-invite-page .feature-name {
    color: white;
}

.theme-space .vip-invite-page .feature-category,
.theme-winter .vip-invite-page .feature-category,
.theme-nature .vip-invite-page .feature-category,
.theme-ocean .vip-invite-page .feature-category {
    color: rgba(255,255,255,0.6);
}
