* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            color: #2c3e50;
            line-height: 1.6;
        }

        .header {
            background: white;
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #2c3e50;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #7c3aed;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-icon-svg {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #6c757d;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #7c3aed;
        }

        .share-btn {
            background: #7c3aed;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .share-btn:hover {
            background: #6d28d9;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #6c757d;
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefits-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-size: 0.95rem;
        }

        .benefit-icon {
            color: #7c3aed;
            font-weight: bold;
        }

        .search-section {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
            margin-bottom: 40px;
        }

        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            background: #f8f9fa;
        }

        .search-input:focus {
            outline: none;
            border-color: #7c3aed;
            background: white;
        }

        .search-button {
            padding: 16px 32px;
            background: #7c3aed;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            white-space: nowrap;
        }

        .search-button:hover {
            background: #6d28d9;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .results-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .results-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .results-count {
            color: #6c757d;
            font-size: 0.95rem;
        }

        .sort-select {
            padding: 8px 16px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            background: white;
            color: #495057;
            font-size: 14px;
        }

        .invite-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 24px;
            padding: 8px;
        }

        @media (max-width: 480px) {
            .invite-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 4px;
            }
        }

        @media (max-width: 420px) {
            .invite-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 0;
            }
        }

        .invite-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 16px;
            padding: 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .invite-card:hover {
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            transform: translateY(-4px);
            border-color: #7c3aed;
        }

        .invite-card.boosted {
            border: 2px solid #f59e0b;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
        }

        .invite-card.boosted:hover {
            box-shadow: 0 16px 40px rgba(245, 158, 11, 0.25);
            transform: translateY(-6px);
        }

        .boosted-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, #f59e0b, #ea580c);
            color: white;
            padding: 8px 16px;
            border-radius: 0 16px 0 16px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        .card-menu {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 20;
        }

        .menu-btn {
            background: none;
            border: none;
            color: #9ca3af;
            font-size: 16px;
            width: 24px;
            height: 24px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            opacity: 0.5;
        }

        .menu-btn:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #6b7280;
            opacity: 1;
        }

        .invite-card:hover .menu-btn {
            opacity: 0.8;
        }

        .menu-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 120px;
            display: none;
            z-index: 30;
        }

        .menu-dropdown.active {
            display: block;
        }

        .menu-item {
            width: 100%;
            padding: 8px 12px;
            background: none;
            border: none;
            text-align: left;
            font-size: 13px;
            color: #374151;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .menu-item:hover {
            background: #f3f4f6;
        }

        .menu-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .menu-item:last-child {
            border-radius: 0 0 8px 8px;
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            padding: 24px 24px 16px;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
        }

        .service-logo {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: relative;
        }

        .service-logo::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            pointer-events: none;
        }

        .spotify-logo { background: #1db954; }
        .netflix-logo { background: #e50914; }
        .dropbox-logo { background: #0061ff; }
        .notion-logo { background: #000000; }
        .figma-logo { background: #f24e1e; }
        .github-logo { background: #24292e; }
        .canva-logo { background: #00c4cc; }
        .airbnb-logo { background: #ff5a5f; }
        .generic-logo { 
            background: linear-gradient(135deg, #7c3aed, #6d28d9); 
            border: 2px solid #ffffff;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
        }

        .card-content {
            flex: 1;
            min-width: 0;
        }

        .card-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .service-type {
            color: #7c3aed;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-body {
            padding: 0 24px 20px;
        }

        .card-description {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 16px;
            line-height: 1.6;
            font-weight: 500;
            background: linear-gradient(135deg, #e8f4fd, #f0f9ff);
            padding: 16px;
            border-radius: 12px;
            border-left: 4px solid #7c3aed;
        }

        .referral-code {
            background: #f0f9ff;
            border: 1px solid #0ea5e9;
            border-radius: 6px;
            padding: 8px 12px;
            margin: 8px 0;
            font-size: 0.9rem;
            color: #0369a1;
        }

        .referral-conditions {
            background: #fefce8;
            border-left: 3px solid #eab308;
            padding: 8px 12px;
            margin: 8px 0;
            font-size: 0.85rem;
            color: #a16207;
            line-height: 1.4;
        }

        .referral-instructions {
            background: #f0fdf4;
            border-left: 3px solid #22c55e;
            padding: 8px 12px;
            margin: 8px 0;
            font-size: 0.85rem;
            color: #166534;
            line-height: 1.4;
        }

        .expiry-date {
            background: #fdf2f8;
            border: 1px solid #f472b6;
            border-radius: 6px;
            padding: 6px 10px;
            margin: 8px 0;
            font-size: 0.85rem;
            color: #be185d;
            text-align: center;
        }

        .card-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 20px;
            flex-wrap: wrap;
            padding: 12px 16px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }

        .meta-item:not(:last-child)::after {
            content: '•';
            margin-left: 20px;
            color: #cbd5e1;
        }

        .invite-link-container {
            position: relative;
            margin-bottom: 20px;
        }

        .invite-link-display {
            background: linear-gradient(135deg, #1a202c, #2d3748);
            border: 2px solid #4a5568;
            border-radius: 12px;
            padding: 16px 50px 16px 20px;
            font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
            font-size: 0.95rem;
            color: #68d391;
            word-break: break-all;
            cursor: pointer;
            position: relative;
            opacity: 0.9;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
            width: 100%;
        }

        .invite-link-display:hover {
            opacity: 1;
            border-color: #68d391;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 1px rgba(104, 211, 145, 0.2);
        }

        .invite-link-display:focus {
            outline: none;
            border-color: #68d391;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 2px rgba(104, 211, 145, 0.3);
        }

        .copy-icon-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(104, 211, 145, 0.1);
            border: 1px solid rgba(104, 211, 145, 0.3);
            border-radius: 6px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #68d391;
        }

        .copy-icon-btn:hover {
            background: rgba(104, 211, 145, 0.2);
            border-color: rgba(104, 211, 145, 0.5);
            transform: translateY(-50%) scale(1.05);
        }

        .copy-icon-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .invite-link-display::after {
            content: "Click to copy";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            color: white;
            font-size: 11px;
            padding: 6px 12px;
            border-radius: 8px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
            transform: translateX(-50%) translateY(4px);
            white-space: nowrap;
        }

        .invite-link-display:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .invite-link-display.already-copied {
            background: linear-gradient(135deg, #10b981, #059669);
            border-color: #10b981;
            opacity: 0.8;
        }

        .invite-link-display.already-copied::after {
            content: "Already copied";
        }

        .copy-icon-btn.already-copied {
            background: #10b981;
            border-color: #10b981;
            color: white;
        }

        .card-actions {
            display: flex;
            gap: 12px;
            padding: 20px 24px 24px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }

        .action-btn {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .action-btn.primary {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            color: white;
            border-color: #7c3aed;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
        }

        .action-btn:hover {
            background: #f1f5f9;
            border-color: #7c3aed;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .action-btn.primary:hover {
            background: linear-gradient(135deg, #6d28d9, #5b21b6);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        .cta-button {
            background: #7c3aed;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 16px;
        }

        .cta-button:hover {
            background: #6d28d9;
        }

        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: #6c757d;
        }

        .no-results h3 {
            color: #2c3e50;
            margin-bottom: 8px;
        }

        /* Loading Animation */
        .loading-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
            width: 100%;
            grid-column: 1 / -1;
        }

        .loading-animation {
            text-align: center;
            padding: 40px 20px;
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .loading-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            animation: loadingBounce 1.4s ease-in-out infinite both;
        }

        .loading-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        .loading-dot:nth-child(3) {
            animation-delay: 0s;
        }

        .loading-text {
            color: #6c757d;
            font-size: 1.1rem;
            font-weight: 500;
            animation: loadingPulse 2s ease-in-out infinite;
        }

        @keyframes loadingBounce {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        @keyframes loadingPulse {
            0%, 100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            padding: 0;
            max-width: 500px;
            width: 100%;
            max-height: 95vh;
            min-height: 400px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            animation: slideUp 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            padding: 32px 32px 24px;
            border-bottom: 1px solid #e9ecef;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #6c757d;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: #f8f9fa;
            color: #2c3e50;
        }

        .form-save-indicator {
            position: absolute;
            top: 50px;
            right: 60px;
            background: #10b981;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            opacity: 0.9;
        }

        .modal-body {
            padding: 24px 32px;
            overflow-y: auto;
            flex: 1;
            min-height: 0;
        }

        .modal-footer {
            padding: 24px 32px;
            border-top: 1px solid #e9ecef;
            background: #f8f9fa;
            margin-top: 20px;
        }


        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .modal-description {
            color: #6c757d;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group:last-child {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.9rem;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.2s ease;
            background: #f8f9fa;
            box-sizing: border-box;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #7c3aed;
            background: white;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .form-error {
            color: #dc2626;
            font-size: 0.875rem;
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .form-error::before {
            content: "⚠";
            font-size: 0.875rem;
        }

        .form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .modal-actions {
            display: flex;
            gap: 12px;
            margin: 0;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 24px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .modal-btn.cancel {
            background: white;
            color: #6c757d;
        }

        .modal-btn.submit {
            background: #7c3aed;
            color: white;
            border-color: #7c3aed;
        }

        .modal-btn.submit:hover {
            background: #6d28d9;
            border-color: #6d28d9;
        }

        .footer {
            background: white;
            border-top: 1px solid #e9ecef;
            padding: 40px 0;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: #6c757d;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-link {
            text-decoration: none;
            color: #6c757d;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #7c3aed;
        }

        .footer-description {
            font-size: 0.85rem;
            margin-top: 12px;
            line-height: 1.4;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Coming Soon Modal Styles */
        .coming-soon-modal {
            max-width: 550px;
        }

        .coming-soon-content {
            text-align: center;
        }

        .coming-soon-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .coming-soon-description {
            font-size: 1.1rem;
            color: #2c3e50;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .coming-soon-features {
            text-align: left;
            background: #f8f9fa;
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .coming-soon-features h3 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 16px;
            text-align: center;
        }

        .coming-soon-features ul {
            list-style: none;
            padding: 0;
        }

        .coming-soon-features li {
            padding: 8px 0;
            font-size: 0.95rem;
            color: #495057;
            line-height: 1.4;
        }

        .coming-soon-notify {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .coming-soon-notify p {
            margin-bottom: 8px;
        }

        .coming-soon-notify p:last-child {
            margin-bottom: 0;
            opacity: 0.9;
        }

        /* Booster Pack Styles */
        .booster-pack-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 2px solid #e9ecef;
        }

        .booster-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
        }

        .booster-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 24px;
            text-align: center;
        }

        .booster-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 20px;
        }

        .booster-option {
            cursor: pointer;
            display: block;
        }

        .booster-option input[type="radio"] {
            opacity: 0;
            pointer-events: none;
            width: 1px;
            height: 1px;
            margin: 0;
            padding: 0;
            border: 0;
            clip: rect(0, 0, 0, 0);
            overflow: hidden;
        }

        .booster-card {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            background: white;
        }

        .booster-option input[type="radio"]:checked + .booster-card {
            border-color: #7c3aed;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.02));
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
        }

        .booster-card:hover {
            border-color: #7c3aed;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .booster-badge {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            background: #f59e0b;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .booster-popular .booster-badge {
            background: #10b981;
        }

        .booster-premium .booster-badge {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
        }

        .booster-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .booster-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7c3aed;
            margin-bottom: 8px;
        }

        .booster-card .booster-description {
            font-size: 0.85rem;
            color: #6c757d;
            margin: 0;
            line-height: 1.3;
        }

        .booster-info {
            text-align: center;
            color: #6c757d;
            font-size: 0.85rem;
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Performance optimizations */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Accessibility - Screen reader only content */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
        }

        /* Focus styles for accessibility */
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid #7c3aed;
            outline-offset: 2px;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav-links {
                gap: 20px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .benefits-list {
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }

            .search-form {
                flex-direction: column;
            }

            .search-button {
                width: 100%;
            }

            .results-header {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }

            .card-actions {
                flex-direction: column;
            }

            .footer-links {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px 30px;
            }

            .modal-content {
                margin: 10px;
                max-width: calc(100vw - 20px);
                max-height: calc(100vh - 20px);
                overflow-y: auto;
                display: block;
            }

            .modal-header,
            .modal-body,
            .modal-footer {
                padding-left: 20px;
                padding-right: 20px;
            }

            .modal-body {
                height: auto;
                overflow-y: visible;
                flex-shrink: 1;
            }

            .modal-header,
            .modal-footer {
                flex-shrink: 0;
            }

            .modal-actions {
                flex-direction: column;
            }

            .booster-options {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .booster-card {
                padding: 12px;
                padding-top: 20px;
            }

            .booster-badge {
                top: -6px;
                font-size: 9px;
                padding: 3px 6px;
            }

            .booster-price {
                font-size: 1.2rem;
            }

            /* Card-specific mobile improvements */
            .invite-card {
                border-radius: 12px;
            }

            .card-header {
                padding: 20px 20px 12px;
            }

            .service-logo {
                width: 48px;
                height: 48px;
                margin-right: 16px;
                font-size: 18px;
            }

            .card-content h3 {
                font-size: 1.2rem;
            }

            .card-body {
                padding: 0 20px 16px;
            }

            .card-description {
                font-size: 1rem;
                padding: 14px;
                margin-bottom: 14px;
            }

            .card-meta {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px 16px;
                padding: 10px 14px;
            }

            .meta-item:not(:last-child)::after {
                content: '•';
                margin-left: 8px;
                color: #cbd5e1;
            }

            .invite-link-container {
                margin-bottom: 16px;
            }

            .invite-link-display {
                padding: 14px 46px 14px 16px;
                font-size: 0.9rem;
            }

            .copy-icon-btn {
                width: 28px;
                height: 28px;
                right: 10px;
                font-size: 12px;
            }

            .card-actions {
                padding: 16px 20px 20px;
                gap: 10px;
            }

            .action-btn {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            /* Loading animation mobile */
            .loading-container {
                min-height: 150px;
            }

            .loading-animation {
                padding: 30px 15px;
            }

            .loading-text {
                font-size: 1rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .main-container {
                padding: 20px 12px;
            }

            .search-section {
                padding: 20px 16px;
                margin-bottom: 24px;
            }

            .search-input {
                padding: 14px 16px;
                font-size: 15px;
            }

            .search-button {
                padding: 14px 20px;
            }

            .invite-card {
                margin: 0 4px;
                border-radius: 10px;
            }

            .card-header {
                padding: 16px 16px 10px;
            }

            .service-logo {
                width: 44px;
                height: 44px;
                margin-right: 14px;
                font-size: 16px;
            }

            .card-content h3 {
                font-size: 1.1rem;
            }

            .service-type {
                font-size: 0.8rem;
            }

            .card-body {
                padding: 0 16px 14px;
            }

            .card-description {
                font-size: 0.95rem;
                padding: 12px;
                margin-bottom: 12px;
            }

            .card-meta {
                gap: 6px;
                padding: 8px 12px;
            }

            .meta-item {
                font-size: 0.8rem;
            }

            .invite-link-container {
                margin-bottom: 14px;
            }

            .invite-link-display {
                padding: 12px 42px 12px 14px;
                font-size: 0.85rem;
            }

            .copy-icon-btn {
                width: 26px;
                height: 26px;
                right: 8px;
                font-size: 11px;
            }

            .card-actions {
                padding: 14px 16px 16px;
                gap: 8px;
            }

            .action-btn {
                padding: 8px 14px;
                font-size: 0.8rem;
                gap: 6px;
            }

            .boosted-badge {
                padding: 6px 12px;
                font-size: 10px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .card-header {
                padding: 14px 14px 8px;
            }

            .service-logo {
                width: 40px;
                height: 40px;
                margin-right: 12px;
                font-size: 15px;
            }

            .card-content h3 {
                font-size: 1rem;
                line-height: 1.2;
            }

            .card-body {
                padding: 0 14px 12px;
            }

            .card-description {
                font-size: 0.9rem;
                padding: 10px;
                margin-bottom: 10px;
            }

            .invite-link-container {
                margin-bottom: 12px;
            }

            .invite-link-display {
                padding: 10px 38px 10px 12px;
                font-size: 0.8rem;
            }

            .copy-icon-btn {
                width: 24px;
                height: 24px;
                right: 6px;
                font-size: 10px;
            }

            .card-actions {
                padding: 12px 14px 14px;
                gap: 6px;
            }

            .action-btn {
                padding: 7px 12px;
                font-size: 0.75rem;
            }
        }

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
    border-bottom: 3px solid #7c3aed;
    padding-bottom: 16px;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 32px;
    padding-left: 8px;
    border-left: 4px solid #7c3aed;
}

.legal-section h3 {
    color: #495057;
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #2c3e50;
}

.legal-section strong {
    color: #7c3aed;
    font-weight: 600;
}

.legal-section a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.legal-footer a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    margin: 0 8px;
}

.legal-footer a:hover {
    text-decoration: underline;
}

/* Legal pages mobile responsiveness */
@media (max-width: 768px) {
    .legal-page {
        padding: 0 16px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }

    .legal-section ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 0 12px;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
        padding-left: 6px;
        border-left-width: 3px;
    }

    .legal-section h3 {
        font-size: 1rem;
    }

    .legal-footer {
        margin-top: 40px;
    }

    .legal-footer a {
        display: block;
        margin: 8px 0;
    }
}
