        .create-layout {
            max-width: 960px;
            margin: 0 auto;
            width: 100%;
        }

        .create-cta-row {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 1.25rem;
        }

        .rooms-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .rooms-header .section-label {
            margin-bottom: 0;
        }

        .create-cta-compact {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.4375rem 0.875rem;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #4f46e5;
            font-size: 0.8125rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.01em;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }

        .create-cta-compact:hover {
            border-color: #c7d2fe;
            background: #f5f3ff;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
        }

        .create-cta-plus {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.125rem;
            height: 1.125rem;
            border-radius: 50%;
            background: #6366f1;
            color: #fff;
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1;
        }

        /* legacy — unused on list page */
        .create-cta-card {
            display: none;
        }

        .create-cta-icon {
            display: none;
        }

        .create-cta-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .create-cta-desc {
            font-size: 0.8125rem;
            opacity: 0.85;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .create-form-card {
            max-width: 480px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }

        .create-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-label {
            display: block;
            font-size: 0.8125rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            font-size: 0.9375rem;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }

        .form-hint {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 0.375rem;
        }

        .btn-create {
            padding: 0.875rem 1.5rem;
            background: #111827;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-create:hover {
            background: #374151;
        }

        .welcome-banner {
            text-align: center;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 12px;
            margin-bottom: 1.25rem;
            width: 100%;
        }

        .welcome-banner h2 {
            font-size: 1rem;
            font-weight: 700;
            color: #065f46;
            margin: 0 0 0.35rem;
        }

        .welcome-banner p {
            font-size: 0.8125rem;
            color: #047857;
            margin: 0;
        }

        .welcome-cta {
            display: inline-block;
            width: auto;
            margin-top: 0.75rem;
            padding: 0.5rem 1.25rem;
            font-size: 0.8125rem;
            text-decoration: none;
        }

        .share-panel {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 1.25rem;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .share-row {
            margin-bottom: 1rem;
        }

        .share-row label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            color: #6b7280;
            margin-bottom: 0.375rem;
        }

        .share-input-wrap {
            display: flex;
            gap: 0.5rem;
        }

        .share-input {
            flex: 1;
            padding: 0.625rem 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.75rem;
            background: #fff;
            min-width: 0;
        }

        .btn-copy {
            padding: 0.5rem 1rem;
            background: #6366f1;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-copy.copied {
            background: #10b981;
        }
