        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --border-color: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-color: rgba(0, 0, 0, 0.06);
            --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            
            /* SPORTIGIO BRAND COLORS - nasze akcenty */
            --sportigio-primary: #0B2360;      /* Granatowy główny */
            --sportigio-secondary: #01DFEC;    /* Cyan secondary */
            --sportigio-gradient: linear-gradient(135deg, #0B2360 0%, #01DFEC 100%);
            --sportigio-light: #e6e1f6;       /* Jasny brand dla tła aktywnego */
            --sportigio-active-bg: #f0eef7;   /* Bardzo jasny brand dla aktywnego */
            
            /* BLACK THEME - główny motyw na czarno */
            --black-primary: #000000;
            --black-secondary: #1a1a1a;
            --black-tertiary: #2a2a2a;
            --black-light: #404040;
            --black-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            
            /* CLUB COLORS - dynamiczne kolory klubu (domyślne) */
            --club-primary: #0B2360;          /* Będzie nadpisywane przez każdy Space */
            --club-secondary: #01DFEC;        /* Będzie nadpisywane przez każdy Space */
            --club-gradient: linear-gradient(135deg, var(--club-primary) 0%, var(--club-secondary) 100%);
            --club-light: rgba(11, 35, 96, 0.1);
            --club-active-bg: rgba(11, 35, 96, 0.05);
            
            /* ADDITIONAL COLORS - dodatkowe funkcje (zamiast charity) */
            --additional-primary: #7C3AED;     /* Fioletowy główny */
            --additional-secondary: #A855F7;   /* Fioletowy secondary */
            --additional-gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
            --additional-light: rgba(124, 58, 237, 0.1);
            --additional-active-bg: rgba(124, 58, 237, 0.05);
            
            /* GLASSMORPHISM EFFECTS */
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.18);
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            --glass-backdrop: blur(8px);
            
            /* GLASSMORPHISM VARIANTS */
            --glass-dark-bg: rgba(0, 0, 0, 0.25);
            --glass-dark-border: rgba(255, 255, 255, 0.1);
            --glass-dark-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            
            --glass-club-bg: rgba(11, 35, 96, 0.25);
            --glass-club-border: rgba(11, 35, 96, 0.18);
            --glass-club-shadow: 0 8px 32px 0 rgba(11, 35, 96, 0.37);
            
            --glass-additional-bg: rgba(124, 58, 237, 0.25);
            --glass-additional-border: rgba(124, 58, 237, 0.18);
            --glass-additional-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.37);
        }
        
        [data-theme="dark"] {
            --bg-primary: #1a1a1a;
            --bg-secondary: #2a2a2a;
            --bg-tertiary: #3a3a3a;
            --text-primary: #ffffff;
            --text-secondary: #b4b4b4;
            --text-muted: #888888;
            --border-color: #3a3a3a;
            --border-light: #4a4a4a;
            --shadow-color: rgba(0, 0, 0, 0.4);
            --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            
            /* Dark theme glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--gradient-bg);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        .top-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1000;
        }
        
        .control-button {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 8px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px var(--shadow-color);
        }
        
        .control-button:hover {
            background: var(--bg-secondary);
            transform: translateY(-1px);
        }
        
        .theme-toggle {
            min-width: 44px;
            justify-content: center;
        }
        
        .lang-selector {
            position: relative;
        }
        
        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 4px 12px var(--shadow-color);
            min-width: 120px;
            display: none;
            z-index: 1001;
        }
        
        .lang-dropdown.show {
            display: block;
        }
        
        .lang-option {
            padding: 8px 12px;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .lang-option:hover {
            background: var(--bg-secondary);
        }
        
        .lang-option:first-child {
            border-radius: 8px 8px 0 0;
        }
        
        .lang-option:last-child {
            border-radius: 0 0 8px 8px;
        }
        
        .flag-icon {
            width: 16px;
            height: 12px;
            margin-right: 6px;
            border-radius: 2px;
            display: inline-block;
        }
        
        .lang-option .flag-icon {
            margin-right: 8px;
        }
        
        .onboarding-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .onboarding-wrapper {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
            align-items: start;
        }
        
        /* Desktop Preview Panel - Right side */
        .preview-panel {
            background: var(--bg-primary);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 10px 40px var(--shadow-color);
            position: sticky;
            top: 40px;
            height: fit-content;
            transition: all 0.3s ease;
            order: 2; /* Ensure it's on the right on desktop */
        }
        
        /* Desktop Wizard Content - Left side */
        .wizard-content {
            background: var(--bg-primary);
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 10px 40px var(--shadow-color);
            position: relative;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
            transition: all 0.3s ease;
            order: 1; /* Ensure it's on the left on desktop */
        }
        
        @media (max-width: 1024px) {
            .onboarding-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 500px;
            }
            
            .preview-panel {
                order: -1;
                max-height: 180px;
            }
            
            .top-controls {
                top: 16px;
                right: 16px;
                gap: 8px;
            }
            
            .control-button {
                padding: 6px 10px;
                font-size: 13px;
            }
        }
        
        /* MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {
            .onboarding-container {
                padding: 0;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
            }
            
            .onboarding-wrapper {
                display: flex;
                flex-direction: column;
                height: 100vh;
                max-width: 100%;
                gap: 0;
                margin: 0;
            }
            
            /* Mobile Header with Logo and Preview Hint - ONLY ON MOBILE */
            .mobile-header {
                background: var(--bg-primary);
                border-bottom: 1px solid var(--border-color);
                padding: 12px 16px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 2px 8px var(--shadow-color);
            }
            
            .mobile-logo {
                height: 24px;
            }
            
            .mobile-preview-hint {
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--text-secondary);
                font-size: 12px;
                cursor: pointer;
                padding: 6px 12px;
                border-radius: 20px;
                background: var(--bg-secondary);
                border: 1px solid var(--border-color);
                transition: all 0.2s ease;
            }
            
            .mobile-preview-hint:hover {
                background: var(--bg-primary);
                border-color: #3b82f6;
                color: #3b82f6;
            }
            
            .mobile-preview-hint svg {
                width: 14px;
                height: 14px;
                transition: transform 0.2s ease;
            }
            
            .mobile-preview-hint:hover svg {
                transform: translateY(2px);
            }
            
            /* Mobile Preview Panel - 20vh at top, 100% width */
            .preview-panel {
                order: 1;
                position: relative;
                top: 0;
                left: 0;
                right: 0;
                background: var(--bg-primary);
                border-radius: 0 0 20px 20px;
                padding: 16px;
                margin: 0;
                height: 16vh;
                width: 100%;
                overflow-y: auto;
                box-shadow: 0 4px 20px var(--shadow-color);
                border-bottom: 1px solid var(--border-color);
                transform: translateY(0);
                transition: height 0.3s ease, transform 0.3s ease;
                z-index: 150;
                cursor: pointer;
            }
            
            .preview-panel.expanded {
                height: 90vh;
                transform: translateY(0);
                cursor: default;
                position: fixed;
                top: 0;
                z-index: 300;
                border-radius: 0;
            }
            
            .preview-panel .preview-title {
                font-size: 16px;
                margin-bottom: 12px;
                text-align: center;
                position: relative;
                cursor: pointer;
                padding: 8px 0;
                user-select: none;
            }
            
            .preview-panel .preview-title::before {
                content: '';
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 4px;
                background: var(--border-color);
                border-radius: 2px;
            }
            
            .preview-panel .preview-title::after {
                content: '▼';
                position: absolute;
                right: 16px;
                top: 50%;
                transform: translateY(-50%);
                font-size: 12px;
                color: var(--text-secondary);
                transition: transform 0.3s ease;
            }
            
            .preview-panel.expanded .preview-title::after {
                transform: translateY(-50%) rotate(180deg);
            }
            
            /* Main Content Area - 80vh */
            .wizard-content {
                order: 2;
                flex: none;
                height: 80vh;
                border-radius: 0;
                padding: 20px 16px 100px;
                margin: 0;
                overflow-y: auto;
                box-shadow: none;
                background: var(--bg-primary);
            }
            
            /* Hide desktop logo section on mobile */
            .logo-section {
                display: none;
            }
            
            /* Mobile Logo above progress bar */
            .mobile-logo-section {
                display: block;
                text-align: left;
                margin-bottom: 20px;
                padding-top: 8px;
            }
            
            .mobile-logo-section img {
                height: 28px;
                transition: all 0.3s ease;
            }
            
            /* Mobile Logo under progress bar */
            .mobile-logo-under-progress {
                display: block;
                text-align: center;
                margin: 16px 0 24px 0;
            }
            
            .mobile-logo-under-progress img {
                height: 24px;
                transition: all 0.3s ease;
            }
            
            /* Compact progress bar */
            .progress-bar {
                margin-bottom: 24px;
                height: 4px;
            }
            
            /* Compact step titles */
            .step-title {
                font-size: 18px;
                margin-bottom: 6px;
            }
            
            .step-description {
                font-size: 13px;
                margin-bottom: 24px;
            }
            
            /* Mobile Wizard Actions - Always Sticky */
            .wizard-actions {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: var(--bg-primary);
                border-top: 1px solid var(--border-color);
                padding: 16px;
                margin: 0;
                z-index: 200;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            
            /* Mobile Back Button - Gray Text Style */
            .wizard-actions .btn-secondary {
                background: none;
                border: none;
                color: var(--text-secondary);
                padding: 8px 0;
                font-size: 14px;
                font-weight: 500;
                text-align: center;
                order: 1;
                min-width: auto;
                height: auto;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }
            
            .wizard-actions .btn-secondary:hover {
                color: var(--text-primary);
                background: none;
                transform: none;
                box-shadow: none;
            }
            
            /* Mobile Primary Button - Full Width */
            .wizard-actions .btn-primary {
                order: 2;
                width: 100%;
                min-height: 52px;
                font-size: 16px;
                font-weight: 700;
                border-radius: 12px;
                justify-content: center;
            }
            
            /* Compact phone mockup for mobile */
            .phone-mockup {
                max-width: 200px;
                height: 280px;
                margin: 0 auto;
            }
            
            /* Top controls adjustments */
            .top-controls {
                position: fixed;
                top: 12px;
                right: 12px;
                z-index: 300;
            }
            
            .control-button {
                padding: 8px 10px;
                font-size: 12px;
                min-width: 36px;
                height: 36px;
            }
            
            /* Form adjustments */
            .modern-form .form-control {
                height: 44px;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            
            .initial-choice-container {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 24px;
            }
            
            .choice-button {
                padding: 20px 16px;
                min-height: 120px;
                gap: 12px;
            }
            
            .choice-icon {
                width: 36px;
                height: 36px;
            }
            
            .choice-title {
                font-size: 16px;
            }
            
            .choice-description {
                font-size: 13px;
            }
            
            /* Color palettes mobile */
            .color-palettes {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 24px;
            }
            
            .color-palette {
                padding: 16px;
            }
            
            /* Terms section mobile */
            .terms-section,
            .password-requirements {
                padding: 12px;
                margin: 12px 0;
            }
            
            .checkbox-group {
                gap: 10px;
            }
            
            .checkbox-group input[type="checkbox"] {
                width: 16px;
                height: 16px;
            }
            
            .checkbox-group label {
                font-size: 13px;
                line-height: 1.4;
            }
            
            /* Password requirements mobile */
            .requirements-title {
                font-size: 13px;
            }
            
            .requirement-item {
                font-size: 12px;
            }
            
            /* Code inputs mobile */
            .code-inputs {
                gap: 8px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .code-digit {
                width: 40px;
                height: 48px;
                font-size: 20px;
            }
            
            /* Help section mobile */
            .help-section {
                margin-top: 20px;
                padding: 16px;
            }
            
            .help-links {
                flex-direction: column;
                gap: 8px;
            }
            
            .help-link {
                justify-content: center;
                padding: 12px;
            }
        }
        
        /* HIDE MOBILE HEADER ON DESKTOP */
        .mobile-header {
            display: none;
        }
        
        /* HIDE MOBILE LOGO SECTION ON DESKTOP */
        .mobile-logo-section {
            display: none;
        }
        
        /* HIDE MOBILE LOGO UNDER PROGRESS ON DESKTOP */
        @media (min-width: 769px) {
            .mobile-logo-under-progress {
                display: none;
            }
        }
        
        .wizard-content {
            background: var(--bg-primary);
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 10px 40px var(--shadow-color);
            position: relative;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
            transition: all 0.3s ease;
        }
        
        .logo-section {
            text-align: center;
            margin-bottom: 12px;
        }
        
        .logo-section img {
            height: 32px;
            transition: all 0.3s ease;
        }
        
        .logo-section h1 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .progress-bar {
            width: 100%;
            height: 3px;
            background: var(--border-light);
            border-radius: 2px;
            margin-bottom: 40px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #0B2360 0%, #01DFEC 100%);
            border-radius: 2px;
            transition: width 0.4s ease;
            width: 25%;
        }
        
        [data-theme="dark"] .progress-fill {
            background: linear-gradient(90deg, #0B2360 0%, #01DFEC 100%);
        }
        
        .wizard-step {
            display: none;
        }
        
        .wizard-step.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .step-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .step-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.5;
        }
        
        /* Initial Choice Buttons */
        .initial-choice-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 32px;
        }
        
        .choice-button {
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 32px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            min-height: 180px;
            justify-content: center;
            text-decoration: none;
            color: var(--text-primary);
        }
        
        .choice-button:hover {
            border-color: #1e293b;
            background: var(--bg-secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-color);
            color: var(--text-primary);
            text-decoration: none;
        }
        
        .choice-button.selected {
            border-color: #1e293b;
            background: var(--bg-secondary);
        }
        
        .choice-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 12px;
            color: white;
        }
        
        .choice-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
        
        .choice-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.4;
        }
        
        .facebook-form-section,
        .manual-form-section {
            display: none;
        }
        
        .facebook-form-section.active,
        .manual-form-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .load-more-colors {
            margin-top: 24px;
            text-align: center;
        }
        
        .load-more-btn {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .load-more-btn:hover {
            background: var(--bg-primary);
            border-color: #1e293b;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }
        
        .additional-palettes {
            display: none;
            margin-top: 20px;
        }
        
        .additional-palettes.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .modern-form {
            position: relative;
            margin-bottom: 20px;
        }
        
        .modern-form .form-control {
            width: 100%;
            height: 48px;
            padding: 12px 16px;
            font-size: 15px;
            line-height: 1.5;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s ease;
            background: none;
            color: var(--text-primary);
        }
        
        .modern-form .form-control:focus {
            border-color: #1e293b;
            outline: 0;
            box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
            background: var(--bg-primary);
        }
        
        .modern-form label {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            font-size: 15px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            pointer-events: none;
            margin-bottom: 0;
            font-weight: 500;
        }
        
        .modern-form .form-control:focus + label,
        .modern-form .form-control:not(:placeholder-shown) + label {
            top: 0;
            font-size: 12px;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            padding: 0 6px;
            transform: translateY(-50%);
            font-weight: 600;
        }

        .modern-form .form-control.error {
            border-color: #ef4444;
            background-color: #fef2f2;
        }

        .modern-form .form-control.error:focus {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 120px;
            position: relative;
        }
        
        .btn-content {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s ease;
        }
        
        .btn-loading {
            display: flex;
            align-items: center;
            gap: 8px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.2s ease;
        }
        
        .btn-primary.loading .btn-content {
            opacity: 0;
        }
        
        .btn-primary.loading .btn-loading {
            opacity: 1;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #334155 0%, #475569 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
        }
        
        .btn-secondary {
            background: var(--bg-primary);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 120px;
            text-decoration: none;
        }
        
        .btn-secondary:hover {
            border-color: var(--border-light);
            background: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        .wizard-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            /* Zachowaj oryginalny odstęp od treści powyżej */
            margin-top: 32px; 
            
            /* Zachowaj oryginalne obramowanie i padding u góry */
            border-top: 1px solid var(--border-light);
            padding-top: 24px; /* Odstęp nad przyciskami */
        
            /* DODAJ/ZMIEŃ TE WŁAŚCIWOŚCI: */
            padding-bottom: 8px; /* Dodaj odstęp pod przyciskami, aby nie były przyklejone do samej krawędzi */
            position: sticky;
            bottom: -24px; /* Przykleja do dolnej krawędzi najbliższego przewijalnego kontenera rodzica (.wizard-content) */
            background: var(--bg-primary); /* Niezbędne, aby przewijana treść nie prześwitywała */
            z-index: 10; /* Upewnij się, że jest nad inną treścią w kroku podczas przewijania */
        }
        
        .facebook-preview {
            margin-top: 24px;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .facebook-preview.loading {
            text-align: center;
            color: var(--text-secondary);
        }
        
        .facebook-preview.error {
            background: #fef2f2;
            border-color: #fecaca;
            color: #dc2626;
        }
        
        .fb-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .fb-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        
        .fb-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .fb-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        
        .fb-info p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 2px 0 0 0;
        }
        
        .fb-about {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.4;
            margin-top: 8px;
        }
        
        .preview-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-align: center;
        }
        
        .preview-content {
            text-align: center;
            color: var(--text-secondary);
        }
        
        .phone-mockup {
            width: 100%;
            max-width: 280px;
            height: 400px;
            background: #1a1a1a;
            border-radius: 20px;
            padding: 8px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .mockup-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-screen {
            background: #1a1a1a;
        }
        
        .mockup-hero {
            height: 180px;
            background: linear-gradient(135deg, #4c1d95 0%, #1e40af 100%);
            position: relative;
            overflow: hidden;
        }
        
        .mockup-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.9) 70%, white 100%);
            transition: background 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-hero-overlay {
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.9) 70%, #1a1a1a 100%);
        }
        
        .mockup-header {
            padding: 16px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .mockup-logo {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: #1e293b;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .mockup-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .mockup-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 16px 0;
        }
        
        .mockup-nav-item {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .mockup-nav-item.active {
            background: rgba(255, 255, 255, 0.9);
            color: #1e293b;
        }
        
        .mockup-content {
            padding: 0 16px 16px;
            background: white;
            position: relative;
            z-index: 2;
            transition: background-color 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-content {
            background: #1a1a1a;
        }
        
        .mockup-news-card {
            background: white;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-news-card {
            background: #2a2a2a;
            border-color: #3a3a3a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .mockup-news-image {
            width: 100%;
            height: 120px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="dark"] .mockup-news-image {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        .mockup-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .mockup-news-content {
            padding: 12px;
        }
        
        .mockup-skeleton-title {
            height: 16px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        
        [data-theme="dark"] .mockup-skeleton-title {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        .mockup-skeleton-text {
            height: 12px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 4px;
            margin-bottom: 6px;
        }
        
        [data-theme="dark"] .mockup-skeleton-text {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        .mockup-skeleton-text.short {
            width: 70%;
        }
        
        .mockup-match-section {
            margin-top: 16px;
        }
        
        .mockup-section-title {
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            text-align: left;
            transition: color 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-section-title {
            color: #ffffff;
        }
        
        .mockup-match-card {
            background: white;
            border-radius: 12px;
            padding: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-match-card {
            background: #2a2a2a;
            border-color: #3a3a3a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .mockup-match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .mockup-match-team {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mockup-team-logo {
            width: 24px;
            height: 24px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 50%;
        }
        
        [data-theme="dark"] .mockup-team-logo {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        .mockup-team-name {
            width: 60px;
            height: 12px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 4px;
        }
        
        [data-theme="dark"] .mockup-team-name {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        .mockup-match-time {
            text-align: center;
            color: #64748b;
            font-size: 12px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-match-time {
            color: #94a3b8;
        }
        
        .mockup-match-date {
            width: 80px;
            height: 10px;
            background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 4px;
            margin: 4px auto 0;
        }
        
        [data-theme="dark"] .mockup-match-date {
            background: linear-gradient(90deg, #3a3a3a 0%, #4a4a4a 50%, #3a3a3a 100%);
            background-size: 200% 100%;
        }
        
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }
        
        .mockup-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
            z-index: 3;
            pointer-events: none;
            transition: background 0.3s ease;
        }
        
        [data-theme="dark"] .mockup-fade {
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
        }
        
        .mockup-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #64748b;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #f3f4f6;
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .error-message {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #dc2626;
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 16px;
            font-size: 14px;
        }
        
        .success-message {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #16a34a;
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 16px;
            font-size: 14px;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 24px 0;
            color: var(--text-muted);
            font-size: 13px;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-color);
        }
        
        .divider span {
            padding: 0 16px;
        }
        
        .color-palettes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .color-palette {
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .color-palette:hover {
            border-color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-color);
        }
        
        .color-palette.selected {
            border-color: #1e293b;
            background: var(--bg-secondary);
        }
        
        .color-palette.selected::after {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            background: #1e293b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }
        
        .palette-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .palette-colors {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }
        
        .palette-color {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .palette-preview {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .preview-text {
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .loading-colors {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }
        
        .logo-preview {
            margin-top: 20px;
            text-align: center;
        }
        
        .logo-preview-container {
            position: relative;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .logo-preview-container img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
        }
        
        .remove-logo-btn {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 24px;
            height: 24px;
            background: #dc2626;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .remove-logo-btn:hover {
            background: #b91c1c;
            transform: scale(1.1);
        }
        
        .logo-preview-text {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
        }
        
        .logo-section-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 24px 0 8px 0;
        }
        
        .logo-section-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
            padding: 4px;
        }
        
        .logo-option {
            aspect-ratio: 1;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            background: var(--bg-secondary);
        }
        
        .logo-option:hover {
            border-color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }
        
        .logo-option.selected {
            border-color: #1e293b;
            background: var(--bg-primary);
        }
        
        .logo-option.selected::after {
            content: '✓';
            position: absolute;
            top: 4px;
            right: 4px;
            width: 20px;
            height: 20px;
            background: #1e293b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
        }
        
        .logo-option img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
        }
        
        .logo-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .btn-small {
            padding: 8px 16px;
            font-size: 13px;
            min-width: auto;
        }
        
        .selected-logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .selected-logo-container img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 8px;
            background: white;
            padding: 4px;
        }
        
        .logo-loading {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }
        
        .logo-error {
            text-align: center;
            padding: 20px;
            color: #dc2626;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            margin-bottom: 16px;
        }
        
        /* Custom Scrollbar */
        .wizard-content::-webkit-scrollbar {
            width: 6px;
        }
        
        .wizard-content::-webkit-scrollbar-track {
            background: var(--bg-secondary);
            border-radius: 3px;
        }
        
        .wizard-content::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 3px;
            transition: background 0.3s ease;
        }
        
        .wizard-content::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }
        
        [data-theme="dark"] .wizard-content::-webkit-scrollbar-thumb {
            background: #505050;
        }
        
        [data-theme="dark"] .wizard-content::-webkit-scrollbar-thumb:hover {
            background: #606060;
        }
        
        /* Email verification styles */
        .email-info {
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            margin: 16px 0;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .info-item:last-child {
            margin-top: 8px;
        }
        
        .info-item svg {
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        .verification-status {
            text-align: center;
            margin-bottom: 24px;
            padding: 16px 0;
        }
        
        .status-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .status-icon svg {
            color: white;
        }
        
        .status-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .status-description {
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        .code-input-container {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .code-label {
            display: block;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
            font-size: 16px;
        }
        
        .code-inputs {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 16px;
        }
        
        .code-digit {
            width: 48px;
            height: 56px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            background: var(--bg-primary);
            transition: all 0.2s ease;
        }
        
        .code-digit:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            background: var(--bg-primary);
        }
        
        .code-digit.filled {
            border-color: #3b82f6;
            background: #3b82f6;
            color: white;
        }
        
        .code-digit.error {
            border-color: #ef4444;
            background: var(--bg-primary);
            color: var(--text-primary);
            animation: shake 0.5s ease-in-out;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-4px); }
            75% { transform: translateX(4px); }
        }
        
        .countdown-section {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .countdown-timer {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .countdown-timer svg {
            color: var(--primary-color);
        }
        
        .countdown-timer.expired {
            border-color: #ef4444;
            background: #fef2f2;
        }
        
        .countdown-timer.expired svg {
            color: #ef4444;
        }
        
        .resend-section {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .resend-text {
            color: var(--text-secondary);
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .btn-link {
            background: none;
            border: none;
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        
        .btn-link:hover {
            background: rgba(59, 130, 246, 0.1);
            text-decoration: none;
        }
        
        .btn-link:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .help-section {
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            margin-top: 32px;
            text-align: center;
        }
        
        .help-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        
        .help-links {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .help-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: 1px solid var(--border-color);
            background: var(--bg-primary);
        }
        
        .help-link:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
            text-decoration: none;
        }
        
        [data-theme="dark"] .help-link:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }
        
        .help-link svg {
            color: currentColor;
        }
        
        .resend-countdown {
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .code-inputs {
                gap: 8px;
            }
            
            .code-digit {
                width: 40px;
                height: 48px;
                font-size: 20px;
            }
            
            .help-links {
                flex-direction: column;
                gap: 8px;
            }
            
            .help-link {
                justify-content: center;
            }
            
            .status-icon {
                width: 56px;
                height: 56px;
            }
            
            .status-icon svg {
                width: 32px;
                height: 32px;
            }
            
            .verification-status {
                padding: 12px 0;
                margin-bottom: 20px;
            }
            
            .help-section {
                margin-top: 24px;
                padding: 16px;
            }
        }
        
        /* Registration Summary styles */
        .registration-summary {
            max-width: 100%;
        }
        
        .summary-section {
            margin-bottom: 32px;
        }
        
        .summary-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        
        .json-display {
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-primary);
            overflow-x: auto;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .json-display pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        
        .json-key {
            color: #0ea5e9;
            font-weight: 500;
        }
        
        .json-string {
            color: #059669;
        }
        
        .json-number {
            color: #dc2626;
        }
        
        .json-boolean {
            color: #7c3aed;
        }
        
        .json-null {
            color: #6b7280;
        }
        
        [data-theme="dark"] .json-key {
            color: #38bdf8;
        }
        
        [data-theme="dark"] .json-string {
            color: #34d399;
        }
        
        [data-theme="dark"] .json-number {
            color: #f87171;
        }
        
        [data-theme="dark"] .json-boolean {
            color: #a78bfa;
        }
        
        [data-theme="dark"] .json-null {
            color: #9ca3af;
        }
        
        @media (max-width: 768px) {
            .json-display {
                font-size: 12px;
                padding: 16px;
                max-height: 300px;
            }
            
            .summary-title {
                font-size: 16px;
            }
        }
        
        /* BLACK THEME BUTTONS */
        .btn-black {
            background: var(--black-gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 120px;
        }
        
        .btn-black:hover {
            background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* CLUB THEME BUTTONS */
        .btn-club {
            background: var(--club-gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 120px;
        }
        
        .btn-club:hover {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(var(--club-primary), 0.3);
        }
        
        /* ADDITIONAL THEME BUTTONS */
        .btn-additional {
            background: var(--additional-gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 120px;
        }
        
        .btn-additional:hover {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        }

        /* GLASSMORPHISM COMPONENTS */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .glass-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
        }
        
        .glass-card-dark {
            background: var(--glass-dark-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border-radius: 16px;
            border: 1px solid var(--glass-dark-border);
            box-shadow: var(--glass-dark-shadow);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .glass-card-club {
            background: var(--glass-club-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border-radius: 16px;
            border: 1px solid var(--glass-club-border);
            box-shadow: var(--glass-club-shadow);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .glass-card-additional {
            background: var(--glass-additional-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border-radius: 16px;
            border: 1px solid var(--glass-additional-border);
            box-shadow: var(--glass-additional-shadow);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        /* GLASSMORPHISM BACKGROUNDS */
        .glass-background {
            position: relative;
            overflow: hidden;
        }
        
        .glass-background::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--club-primary) 0%, transparent 70%);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
            z-index: -1;
        }
        
        .glass-background::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--additional-primary) 0%, transparent 70%);
            opacity: 0.1;
            animation: float 8s ease-in-out infinite reverse;
            z-index: -1;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        /* GLASSMORPHISM NAVIGATION */
        .glass-nav {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-backdrop);
            -webkit-backdrop-filter: var(--glass-backdrop);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 8px;
            display: flex;
            gap: 4px;
        }
        
        .glass-nav-item {
            background: transparent;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            color: var(--text-primary);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .glass-nav-item:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .glass-nav-item.active {
            background: rgba(255, 255, 255, 0.3);
            color: var(--club-primary);
            font-weight: 600;
        }
        
        /* CLUB COLOR OVERRIDES - przykłady */
        .club-red {
            --club-primary: #DC2626;
            --club-secondary: #EF4444;
            --club-light: rgba(220, 38, 38, 0.1);
            --club-active-bg: rgba(220, 38, 38, 0.05);
            --glass-club-bg: rgba(220, 38, 38, 0.25);
            --glass-club-border: rgba(220, 38, 38, 0.18);
            --glass-club-shadow: 0 8px 32px 0 rgba(220, 38, 38, 0.37);
        }
        
        .club-blue {
            --club-primary: #2563EB;
            --club-secondary: #3B82F6;
            --club-light: rgba(37, 99, 235, 0.1);
            --club-active-bg: rgba(37, 99, 235, 0.05);
            --glass-club-bg: rgba(37, 99, 235, 0.25);
            --glass-club-border: rgba(37, 99, 235, 0.18);
            --glass-club-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.37);
        }
        
        .club-green {
            --club-primary: #059669;
            --club-secondary: #10B981;
            --club-light: rgba(5, 150, 105, 0.1);
            --club-active-bg: rgba(5, 150, 105, 0.05);
            --glass-club-bg: rgba(5, 150, 105, 0.25);
            --glass-club-border: rgba(5, 150, 105, 0.18);
            --glass-club-shadow: 0 8px 32px 0 rgba(5, 150, 105, 0.37);
        }
        
        /* Password Requirements styles */
        .password-requirements {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            margin: 16px 0;
        }
        
        .requirements-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .requirements-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .requirement-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }
        
        .requirement-item svg {
            width: 16px;
            height: 16px;
            color: #ef4444;
            flex-shrink: 0;
        }
        
        .requirement-item.valid {
            color: #059669;
        }
        
        .requirement-item.valid svg {
            color: #059669;
        }
        
        .requirement-item.invalid {
            color: #ef4444;
        }
        
        .requirement-item.invalid svg {
            color: #ef4444;
        }
        
        /* Password Match Indicator styles */
        .password-match-indicator {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 12px 16px;
            margin: 12px 0;
        }
        
        .password-match-indicator .requirement-item {
            margin-bottom: 0;
        }
        
        /* Terms and Privacy styles */
        .terms-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            margin: 16px 0;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .checkbox-group:last-child {
            margin-bottom: 0;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            background: var(--bg-primary);
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .checkbox-group input[type="checkbox"]:checked {
            background: #3b82f6;
            border-color: #3b82f6;
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
        }
        
        .checkbox-group input[type="checkbox"]:indeterminate {
            background: #3b82f6;
            border-color: #3b82f6;
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 8h8'/%3e%3c/svg%3e");
        }
        
        .checkbox-group input[type="checkbox"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .checkbox-group label {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.4;
            cursor: pointer;
            margin-bottom: 0;
        }
        
        .checkbox-group label a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }
        
        .checkbox-group label a:hover {
            text-decoration: underline;
        }
        
        [data-theme="dark"] .checkbox-group input[type="checkbox"] {
            border-color: #4a4a4a;
            background: #2a2a2a;
        }
        
        [data-theme="dark"] .checkbox-group input[type="checkbox"]:checked {
            background: #3b82f6;
            border-color: #3b82f6;
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 768px) {
            .password-requirements,
            .terms-section {
                padding: 12px;
                margin: 12px 0;
            }
            
            .requirements-title {
                font-size: 13px;
            }
            
            .requirement-item {
                font-size: 12px;
            }
            
            .checkbox-group {
                gap: 10px;
            }
            
            .checkbox-group input[type="checkbox"] {
                width: 16px;
                height: 16px;
            }
            
            .checkbox-group label {
                font-size: 13px;
            }
        }
        
        .mockup-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        /* Manual Mode Logo - More padding in circle */
        .mockup-logo.manual-mode {
            padding: 8px;
            background: white;
        }
        
        .mockup-logo.manual-mode img {
            object-fit: contain;
            border-radius: 8px;
        }
        
        [data-theme="dark"] .mockup-logo.manual-mode {
            background: #2a2a2a;
        }
        
        .facebook-preview.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .facebook-privacy-error {
            text-align: center;
            padding: 24px;
        }

        .privacy-error-icon {
            margin-bottom: 16px;
            color: #f59e0b;
        }

        .privacy-error-icon svg {
            display: block;
            margin: 0 auto;
        }

        .privacy-error-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .privacy-error-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .privacy-error-content .btn-primary {
            margin-top: 8px;
        }

        .facebook-regular-error {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
        }

        .error-icon {
            color: #ef4444;
            flex-shrink: 0;
        }

        .facebook-preview.privacy-error {
            border-color: #f59e0b;
            background: #fffbeb;
        }

        [data-theme="dark"] .facebook-preview.privacy-error {
            border-color: #f59e0b;
            background: #1c1917;
        }

        [data-theme="dark"] .privacy-error-content h4 {
            color: var(--text-primary);
        }

        [data-theme="dark"] .privacy-error-content p {
            color: var(--text-secondary);
        }
        